Package org.jbpm.ui.properties

Examples of org.jbpm.ui.properties.DelegableConfPropertyDescriptor$DelegableCellEditor


        descriptors.add(new TextPropertyDescriptor(PROPERTY_DESCRIPTION, Messages.getString("property.description")));
        //}
        if (this instanceof Delegable) {
            String type = ((Delegable) this).getDelegationType();
            descriptors.add(new DelegableClassPropertyDescriptor(PROPERTY_CLASS, Messages.getString("property.delegation.class"), type));
            descriptors.add(new DelegableConfPropertyDescriptor(PROPERTY_CONFIGURATION, (Delegable) this, Messages.getString("property.delegation.configuration")));
        }
        descriptors.addAll(getCustomPropertyDescriptors());
        return descriptors.toArray(new IPropertyDescriptor[descriptors.size()]);
    }
View Full Code Here

TOP

Related Classes of org.jbpm.ui.properties.DelegableConfPropertyDescriptor$DelegableCellEditor

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.