Package org.huihoo.workflow.impl.store.usermodel_rt

Examples of org.huihoo.workflow.impl.store.usermodel_rt.WorkflowGroupImpl_RT


     * @param groupname   The group name of the new group
     * @param description The description of this group
     */
  public WorkflowGroup createGroup_impl(String groupid, String groupname, String description)
  {
    WorkflowGroup group = new WorkflowGroupImpl_RT(this, groupid, groupname, description);
    return (group);
  }
View Full Code Here


    String groupid,
    String groupname,
    String description,
    WorkflowGroup parentGroup)
  {
    WorkflowGroup group = new WorkflowGroupImpl_RT(this, groupid, groupname, description, parentGroup);

    return (group);
  }
View Full Code Here

TOP

Related Classes of org.huihoo.workflow.impl.store.usermodel_rt.WorkflowGroupImpl_RT

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.