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