Package org.aperteworkflow.editor.ui.property

Examples of org.aperteworkflow.editor.ui.property.AperteProcessClassInfo


  public WidgetItem(String widgetId, String name, String description, String icon,
                      List<Property<?>> properties,
                      List<PermissionDefinition> permissions,
                      Boolean childrenAllowed, BundleItem bundle) {
   
    classInfo = new AperteProcessClassInfo();
    classInfo.setAliasName(widgetId);
    classInfo.setDocName(name);
    classInfo.setDocDescription(description);
    classInfo.setDocIcon(icon);
    classInfo.setProperties(properties);
View Full Code Here


    this.bundle = bundle;
    classInfo.setPermissions(permissions);
    storeInWidgetset(widgetId);
  }
  public WidgetItem(Class<?> aperteClass, Set<Permission> defaultPermissions, BundleItem bundle) {
    classInfo = new AperteProcessClassInfo(aperteClass, defaultPermissions);
    this.bundle = bundle;
    storeInWidgetset(classInfo.getAliasName());
  }
View Full Code Here

TOP

Related Classes of org.aperteworkflow.editor.ui.property.AperteProcessClassInfo

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.