< prev index next >

src/java.desktop/share/classes/java/beans/DesignMode.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.beans;
  27 
  28 /**
  29  * <p>
  30  * This interface is intended to be implemented by, or delegated from, instances
  31  * of java.beans.beancontext.BeanContext, in order to propagate to its nested hierarchy
  32  * of java.beans.beancontext.BeanContextChild instances, the current "designTime" property.
  33  * <p>
  34  * The JavaBeans&trade; specification defines the notion of design time as is a
  35  * mode in which JavaBeans instances should function during their composition
  36  * and customization in a interactive design, composition or construction tool,
  37  * as opposed to runtime when the JavaBean is part of an applet, application,
  38  * or other live Java executable abstraction.
  39  *
  40  * @author Laurence P. G. Cable
  41  * @since 1.2
  42  *
  43  * @see java.beans.beancontext.BeanContext
  44  * @see java.beans.beancontext.BeanContextChild
  45  * @see java.beans.beancontext.BeanContextMembershipListener
  46  * @see java.beans.PropertyChangeEvent
  47  */
  48 
  49 public interface DesignMode {
  50 
  51     /**
  52      * The standard value of the propertyName as fired from a BeanContext or
  53      * other source of PropertyChangeEvents.
  54      */




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.beans;
  27 
  28 /**
  29  * <p>
  30  * This interface is intended to be implemented by, or delegated from, instances
  31  * of java.beans.beancontext.BeanContext, in order to propagate to its nested hierarchy
  32  * of java.beans.beancontext.BeanContextChild instances, the current "designTime" property.
  33  * <p>
  34  * The JavaBeans specification defines the notion of design time as is a
  35  * mode in which JavaBeans instances should function during their composition
  36  * and customization in a interactive design, composition or construction tool,
  37  * as opposed to runtime when the JavaBean is part of an applet, application,
  38  * or other live Java executable abstraction.
  39  *
  40  * @author Laurence P. G. Cable
  41  * @since 1.2
  42  *
  43  * @see java.beans.beancontext.BeanContext
  44  * @see java.beans.beancontext.BeanContextChild
  45  * @see java.beans.beancontext.BeanContextMembershipListener
  46  * @see java.beans.PropertyChangeEvent
  47  */
  48 
  49 public interface DesignMode {
  50 
  51     /**
  52      * The standard value of the propertyName as fired from a BeanContext or
  53      * other source of PropertyChangeEvents.
  54      */


< prev index next >