home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-20 | 1.7 KB | 56 lines |
- /*
- * @(#)Customizer.java 1.13 98/03/18
- *
- * Copyright 1996, 1997 by Sun Microsystems, Inc.,
- * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
- * All rights reserved.
- *
- * This software is the confidential and proprietary information
- * of Sun Microsystems, Inc. ("Confidential Information"). You
- * shall not disclose such Confidential Information and shall use
- * it only in accordance with the terms of the license agreement
- * you entered into with Sun.
- */
-
- package java.beans;
-
- /**
- * A customizer class provides a complete custom GUI for customizing
- * a target Java Bean.
- * <P>
- * Each customizer should inherit from the java.awt.Component class so
- * it can be instantiated inside an AWT dialog or panel.
- * <P>
- * Each customizer should have a null constructor.
- */
-
- public interface Customizer {
-
- /**
- * Set the object to be customized. This method should be called only
- * once, before the Customizer has been added to any parent AWT container.
- * @param bean The object to be customized.
- */
- void setObject(Object bean);
-
- /**
- * Register a listener for the PropertyChange event. The customizer
- * should fire a PropertyChange event whenever it changes the target
- * bean in a way that might require the displayed properties to be
- * refreshed.
- *
- * @param listener An object to be invoked when a PropertyChange
- * event is fired.
- */
- void addPropertyChangeListener(PropertyChangeListener listener);
-
- /**
- * Remove a listener for the PropertyChange event.
- *
- * @param listener The PropertyChange listener to be removed.
- */
- void removePropertyChangeListener(PropertyChangeListener listener);
-
- }
-
-