Example usage for Java java.beans PropertyEditor fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getAsText() Gets the property value as text. |
Class> | getClass() Returns the runtime class of this Object . |
java.awt.Component | getCustomEditor() A PropertyEditor may choose to make available a full custom Component that edits its property value. |
String | getJavaInitializationString() Returns a fragment of Java code that can be used to set a property to match the editors current state. |
String[] | getTags() If the property value must be one of a set of known tagged values, then this method should return an array of the tags. |
Object | getValue() Gets the property value. |
boolean | isPaintable() Determines whether this property editor is paintable. |
void | setAsText(String text) Set the property value by parsing a given String. |
void | setValue(Object value) Set (or change) the object that is to be edited. |
boolean | supportsCustomEditor() Determines whether this property editor supports a custom editor. |