Uses of Class
org.fife.ui.rsyntaxtextarea.folding.Fold
-
Packages that use Fold Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor.org.fife.ui.rsyntaxtextarea.folding Code folding functionality. -
-
Uses of Fold in org.fife.ui.rsyntaxtextarea
Methods in org.fife.ui.rsyntaxtextarea with parameters of type Fold Modifier and Type Method Description voidRSyntaxTextArea. foldToggled(Fold fold)Called whenever a fold is collapsed or expanded. -
Uses of Fold in org.fife.ui.rsyntaxtextarea.folding
Methods in org.fife.ui.rsyntaxtextarea.folding that return Fold Modifier and Type Method Description FoldFold. createChild(int type, int startOffs)Creates a fold that is a child of this one.FoldFold. getChild(int index)Returns a specific child fold.FoldDefaultFoldManager. getDeepestFoldContaining(int offs)FoldFoldManager. getDeepestFoldContaining(int offs)Returns the "deepest" nested fold containing the specified offset.FoldDefaultFoldManager. getDeepestOpenFoldContaining(int offs)FoldFoldManager. getDeepestOpenFoldContaining(int offs)Returns the "deepest" open fold containing the specified offset.FoldDefaultFoldManager. getFold(int index)FoldFoldManager. getFold(int index)Returns a specific top-level fold, which may have child folds.FoldDefaultFoldManager. getFoldForLine(int line)FoldFoldManager. getFoldForLine(int line)Returns the fold region that starts at the specified line.FoldFold. getLastChild()Returns the last child fold.FoldFold. getParent()Returns the parent fold of this one.Methods in org.fife.ui.rsyntaxtextarea.folding that return types with arguments of type Fold Modifier and Type Method Description List<Fold>CurlyFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>FoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>HtmlFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>JsonFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>LatexFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>NsisFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.List<Fold>XmlFoldParser. getFolds(RSyntaxTextArea textArea)Returns a list of all folds in the text area.Methods in org.fife.ui.rsyntaxtextarea.folding with parameters of type Fold Modifier and Type Method Description protected voidFoldCollapser. collapseImpl(Fold fold)Collapses the specified fold, and any of its child folds, as appropriate.intFold. compareTo(Fold otherFold)Two folds are considered equal if they start at the same offset.booleanFoldCollapser. getShouldCollapse(Fold fold)Returns whether a specific fold should be collapsed.Method parameters in org.fife.ui.rsyntaxtextarea.folding with type arguments of type Fold Modifier and Type Method Description voidDefaultFoldManager. setFolds(List<Fold> folds)voidFoldManager. setFolds(List<Fold> folds)Sets the folds for this fold manager.
-