All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.ui.rtextarea.ExpandedFoldRenderStrategy Maven / Gradle / Ivy

Go to download

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.

The newest version!
/*
 * 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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy