Ejemplo n.º 1
0
 /** Set active match to the previous one */
 public void editSelectFuzzyPrevMenuItemActionPerformed() {
   Core.getMatcher().setPrevActiveMatch();
 }
Ejemplo n.º 2
0
 public void gotoMatchSourceSegmentActionPerformed() {
   NearString ns = Core.getMatcher().getActiveMatch();
   if (ns != null && ns.comesFrom == MATCH_SOURCE.MEMORY) {
     Core.getEditor().gotoEntry(ns.source, ns.key);
   }
 }
Ejemplo n.º 3
0
 /** Set active match to the next one */
 public void editSelectFuzzyNextMenuItemActionPerformed() {
   Core.getMatcher().setNextActiveMatch();
 }