Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class PropertyEditorSupport extends Object implements PropertyEditor { // Protected Constructors protected PropertyEditorSupport(); protected PropertyEditorSupport(Object source); // Public Instance Methods public synchronized void addPropertyChangeListener(PropertyChangeListener listener); public void firePropertyChange(); public String getAsText(); public Component getCustomEditor(); public String getJavaInitializationString(); public String[] getTags(); public Object getValue(); public boolean isPaintable(); public void paintValue(Graphics gfx, Rectangle box); public synchronized void removePropertyChangeListener(PropertyChangeListener listener); public void setAsText(String text) throws IllegalArgumentException; public void setValue(Object value); public boolean supportsCustomEditor(); }