Package org.apache.beehive.controls.api.packaging

Examples of org.apache.beehive.controls.api.packaging.PropertyInfo


    {
        //
        // Constrained properties are implicitly bound.  Refer to section 7.4.3 of the JavaBeans
        // spec for the rationale.
        //
        PropertyInfo propInfo = getPropertyInfo();
        return propInfo != null && (propInfo.bound() || propInfo.constrained());
    }
View Full Code Here


     * Returns 'true' is the property is a constrained property that will support registration of
     * a VetoableChangeListener for vetoable change notifications.
     */
    public boolean isConstrained()
    {
        PropertyInfo propInfo = getPropertyInfo();
        return propInfo != null && propInfo.constrained();
    }
View Full Code Here

    /**
     * Returns the class name of the property editor class, or null
     */
    public String getEditorClass()
    {
        PropertyInfo pi = getPropertyInfo();
        if (pi == null)
            return null;

        //
        // This is trickier, because APT doesn't allow access to Class-valued annotations,
View Full Code Here

    {
        //
        // Constrained properties are implicitly bound.  Refer to section 7.4.3 of the JavaBeans
        // spec for the rationale.
        //
        PropertyInfo propInfo = getPropertyInfo();
        return propInfo != null && (propInfo.bound() || propInfo.constrained());
    }
View Full Code Here

     * Returns 'true' is the property is a constrained property that will support registration of
     * a VetoableChangeListener for vetoable change notifications.
     */
    public boolean isConstrained()
    {
        PropertyInfo propInfo = getPropertyInfo();
        return propInfo != null && propInfo.constrained();
    }
View Full Code Here

    /**
     * Returns the class name of the property editor class, or null
     */
    public String getEditorClass()
    {
        PropertyInfo pi = getPropertyInfo();
        if (pi == null)
            return null;

        //
        // This is trickier, because APT doesn't allow access to Class-valued annotations,
View Full Code Here

TOP

Related Classes of org.apache.beehive.controls.api.packaging.PropertyInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.