
org.fife.rsta.ui.ContentAssistable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rstaui Show documentation
Show all versions of rstaui Show documentation
RSTAUI is an add-on library for RSyntaxTextArea that provides pre-build dialog boxes commonly needed in text editing applications.
/*
* 01/12/2009
*
* ContentAssistable.java - A component, such as text field, that supports
* content assist.
* This library is distributed under a modified BSD license. See the included
* RSTAUI.License.txt file for details.
*/
package org.fife.rsta.ui;
/**
* A component (such as a text field) that supports content assist.
* Implementations will fire a property change event of type
* {@link #ASSISTANCE_IMAGE} when content assist is enabled or disabled.
*
* @author Robert Futrell
* @version 1.0
*/
public interface ContentAssistable {
/**
* Property event fired when the image to use when the component is focused
* changes. This will either be null
for "no image," or
* a java.awt.Image
.
*/
public static final String ASSISTANCE_IMAGE = "AssistanceImage";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy