June 1997
Intermediate to advanced
318 pages
8h 17m
English
Class java.beans.PropertyEditorSupport
PropertyEditorSupport
is used as a base class for other
property editors. Its default method implementations are designed to
be overridden for the features that are supported for a particular
property editor. Work can also be delegated to an instance of this
class.
public class PropertyEditorSupport implements PropertyEditor
{
// constructors
protected PropertyEditorSupport();
protected PropertyEditorSupport(Object source);
// methods
public synchronized void addPropertyChangeListener(
PropertyChangeListener listener);
public void firePropertyChange();
public String getAsText();
public java.awt.Component getCustomEditor();
public String getJavaInitializationString();
public String[] getTags();
public Object getValue();
public boolean isPaintable();
public void paintValue(java.awt.Graphics gfx,
java.awt.Rectangle box);
public synchronized void removePropertyChangeListener(
PropertyChangeListener listener);
public void setAsText(String text)
throws java.lang.IllegalArgumentException;
public void setValue(Object value);
public boolean supportsCustomEditor();
}
PropertyChangeListener,
PropertyEditor
Read now
Unlock full access