Package org.huihoo.workflow.impl.usermodel

Examples of org.huihoo.workflow.impl.usermodel.WorkflowGroupImpl


     * @param groupname   The group name of the new group
     * @param description The description of this group
     */
  public WorkflowGroup createGroup(String groupid, String groupname, String description)
  {
    WorkflowGroup group = new WorkflowGroupImpl(this, groupid, groupname, description);
    synchronized (groups)
    {
      groups.put(group.getUUID(), group);
    }
    return (group);
  }
View Full Code Here


    return (group);
  }

  public WorkflowGroup createGroup(String groupid, String groupname, String description, WorkflowGroup parentGroup)
  {
    WorkflowGroup group = new WorkflowGroupImpl(this, groupid, groupname, description, parentGroup);

    synchronized (groups)
    {
      groups.put(group.getUUID(), group);
    }
    return (group);
  }
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.impl.usermodel.WorkflowGroupImpl

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.