org.fife.ui.rtextarea.ExpandedFoldRenderStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsyntaxtextarea Show documentation
Show all versions of rsyntaxtextarea Show documentation
RSyntaxTextArea is the syntax highlighting text editor for Swing applications. Features include syntax highlighting for 40+ languages, code folding, code completion, regex find and replace, macros, code templates, undo/redo, line numbering and bracket matching.
/*
* This library is distributed under a modified BSD license. See the included
* LICENSE file for details.
*/
package org.fife.ui.rtextarea;
/**
* The strategy to use when rendering expanded folds in the gutter.
*
* @author Robert Futrell
* @version 1.0
*/
public enum ExpandedFoldRenderStrategy {
/**
* Always render expanded folds.
*/
ALWAYS,
/**
* Only render expanded folds when the mouse is hovered over the gutter.
*/
ON_HOVER
}