Uses of Class
ca.cgjennings.ui.textedit.NavigationPoint
-
Packages that use NavigationPoint Package Description ca.cgjennings.apps.arkham.editors ca.cgjennings.ui.textedit -
-
Uses of NavigationPoint in ca.cgjennings.apps.arkham.editors
Methods in ca.cgjennings.apps.arkham.editors that return NavigationPoint Modifier and Type Method Description NavigationPoint
CodeEditor. getSelectedNavigationPoint()
Returns the navigation point selected in the navigation panel, ornull
if none is selected. -
Uses of NavigationPoint in ca.cgjennings.ui.textedit
Fields in ca.cgjennings.ui.textedit with type parameters of type NavigationPoint Modifier and Type Field Description static java.util.List<NavigationPoint>
Navigator. ASYNC_RETRY
A navigator can return this constant to indicate that the generation of navigation points is in progress.Methods in ca.cgjennings.ui.textedit that return NavigationPoint Modifier and Type Method Description protected NavigationPoint
HtmlCodeSupport.HtmlNavigator. createNavigationPoint(java.util.regex.Matcher m, java.lang.String sourceText, boolean initialize)
protected NavigationPoint
MarkdownSupport.MarkdownNavigator. createNavigationPoint(java.util.regex.Matcher m, java.lang.String sourceText, boolean initialize)
protected NavigationPoint
PropertyFileCodeSupport.PropertyNavigator. createNavigationPoint(java.util.regex.Matcher m, java.lang.String sourceText, boolean initialize)
protected NavigationPoint
RegexNavigatorBase. createNavigationPoint(java.util.regex.Matcher m, java.lang.String sourceText, boolean initialize)
Called with each match result to create a navigation point based on the match.protected NavigationPoint
TileSetCodeSupport.TileSetNavigator. createNavigationPoint(java.util.regex.Matcher m, java.lang.String sourceText, boolean initialize)
NavigationPoint
NavigationPoint. getClosestPoint(java.util.List<NavigationPoint> newPoints)
Returns the navigation point in a list of points that is the best match for this point.Methods in ca.cgjennings.ui.textedit that return types with arguments of type NavigationPoint Modifier and Type Method Description java.util.List<NavigationPoint>
JavaScriptNavigator. getNavigationPoints(java.lang.String text)
java.util.List<NavigationPoint>
Navigator. getNavigationPoints(java.lang.String sourceText)
Parses the specified source text and returns a list of navigation points.java.util.List<NavigationPoint>
RegexNavigatorBase. getNavigationPoints(java.lang.String sourceText)
Returns a list of navigation points.Methods in ca.cgjennings.ui.textedit with parameters of type NavigationPoint Modifier and Type Method Description int
NavigationPoint. compareTo(NavigationPoint rhs)
Compares two navigation points by their description.Method parameters in ca.cgjennings.ui.textedit with type arguments of type NavigationPoint Modifier and Type Method Description NavigationPoint
NavigationPoint. getClosestPoint(java.util.List<NavigationPoint> newPoints)
Returns the navigation point in a list of points that is the best match for this point.protected void
RegexNavigatorBase. match(java.lang.String sourceText, java.util.List<NavigationPoint> results)
Searches the source text for matches of the regular expression, collecting the resulting navigation points.static void
NavigationPoint. sortByName(java.util.List<NavigationPoint> points)
Sort a list of navigation points by their description.static void
NavigationPoint. sortByOffset(java.util.List<NavigationPoint> points)
Sort a list of navigation points by their offset.
-