Methods Summary |
---|
public synchronized void | addPropertyChangeListener(java.beans.PropertyChangeListener listener)Register a listener for the PropertyChange event. The class will
fire a PropertyChange value whenever the value is updated.
if (listeners == null) {
listeners = new java.util.Vector();
}
listeners.addElement(listener);
|
public void | firePropertyChange()Report that we have been modified to any interested listeners.
java.util.Vector targets;
synchronized (this) {
if (listeners == null) {
return;
}
targets = (java.util.Vector) listeners.clone();
}
// Tell our listeners that "everything" has changed.
PropertyChangeEvent evt = new PropertyChangeEvent(source, null, null, null);
for (int i = 0; i < targets.size(); i++) {
PropertyChangeListener target = (PropertyChangeListener)targets.elementAt(i);
target.propertyChange(evt);
}
|
public java.lang.String | getAsText()Gets the property value as a string suitable for presentation
to a human to edit.
if (value instanceof String) {
return (String)value;
}
return ("" + value);
|
public java.awt.Component | getCustomEditor()A PropertyEditor may chose to make available a full custom Component
that edits its property value. It is the responsibility of the
PropertyEditor to hook itself up to its editor Component itself and
to report property value changes by firing a PropertyChange event.
The higher-level code that calls getCustomEditor may either embed
the Component in some larger property sheet, or it may put it in
its own individual dialog, or ...
return null;
|
public java.lang.String | getJavaInitializationString()This method is intended for use when generating Java code to set
the value of the property. It should return a fragment of Java code
that can be used to initialize a variable with the current property
value.
Example results are "2", "new Color(127,127,34)", "Color.orange", etc.
return "???";
|
public java.lang.Object | getSource()Returns the bean that is used as the
source of events. If the source has not
been explicitly set then this instance of
PropertyEditorSupport is returned.
return source;
|
public java.lang.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 tag values. This can
be used to represent (for example) enum values. If a PropertyEditor
supports tags, then it should support the use of setAsText with
a tag value as a way of setting the value.
return null;
|
public java.lang.Object | getValue()Gets the value of the property.
return value;
|
public boolean | isPaintable()Determines whether the class will honor the painValue method.
return false;
|
public void | paintValue(java.awt.Graphics gfx, java.awt.Rectangle box)Paint a representation of the value into a given area of screen
real estate. Note that the propertyEditor is responsible for doing
its own clipping so that it fits into the given rectangle.
If the PropertyEditor doesn't honor paint requests (see isPaintable)
this method should be a silent noop.
|
public synchronized void | removePropertyChangeListener(java.beans.PropertyChangeListener listener)Remove a listener for the PropertyChange event.
if (listeners == null) {
return;
}
listeners.removeElement(listener);
|
public void | setAsText(java.lang.String text)Sets the property value by parsing a given String. May raise
java.lang.IllegalArgumentException if either the String is
badly formatted or if this kind of property can't be expressed
as text.
if (value instanceof String) {
setValue(text);
return;
}
throw new java.lang.IllegalArgumentException(text);
|
public void | setSource(java.lang.Object source)Sets the source bean.
The source bean is used as the source of events
for the property changes. This source should be used for information
purposes only and should not be modified by the PropertyEditor.
this.source = source;
|
public void | setValue(java.lang.Object value)Set (or change) the object that is to be edited.
this.value = value;
firePropertyChange();
|
public boolean | supportsCustomEditor()Determines whether the propertyEditor can provide a custom editor.
return false;
|