Uses of Interface
org.eclipse.datatools.sqltools.sqleditor.internal.indent.StopCondition

Packages that use StopCondition
org.eclipse.datatools.sqltools.sqleditor.internal.indent   
 

Uses of StopCondition in org.eclipse.datatools.sqltools.sqleditor.internal.indent
 

Methods in org.eclipse.datatools.sqltools.sqleditor.internal.indent with parameters of type StopCondition
 int SQLHeuristicScanner.scanBackward(int start, int bound, StopCondition condition)
          Finds the highest position p in fDocument such that bound < p <= start and condition.stop(fDocument.getChar(p), p) evaluates to true.
 int SQLHeuristicScanner.scanForward(int start, int bound, StopCondition condition)
          Finds the lowest position p in fDocument such that start <= p < bound and condition.stop(fDocument.getChar(p), p) evaluates to true.