Uses of Interface
org.processmining.framework.models.hlprocess.HighLevelGroup

Packages that use HighLevelGroup
org.processmining.exporting.petrinet.cpnexport   
org.processmining.exporting.petrinet.cpnexport.HLImplementation   
org.processmining.framework.models.hlprocess   
 

Uses of HighLevelGroup in org.processmining.exporting.petrinet.cpnexport
 

Methods in org.processmining.exporting.petrinet.cpnexport with parameters of type HighLevelGroup
 SubSetColorSet HLToCPNTranslator.getColorSetGroup(HighLevelGroup g)
          Returns the corresponding cpn color set representation for the given group
 org.processmining.exporting.petrinet.cpnexport.CpnVarAndType HLToCPNTranslator.getCpnVarForGroup(HighLevelGroup g)
          Returns the cpn variable and type for the given group
 

Uses of HighLevelGroup in org.processmining.exporting.petrinet.cpnexport.HLImplementation
 

Classes in org.processmining.exporting.petrinet.cpnexport.HLImplementation that implement HighLevelGroup
 class HLGroup
          Represents a group, or organizational unit.
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation that return HighLevelGroup
 HighLevelGroup HLActivitySet.addGroup(java.lang.String name)
           
 HighLevelGroup HLPetriNet.addGroup(java.lang.String name)
           
 HighLevelGroup HLActivity.getGroup()
           
 HighLevelGroup HLTransition.getGroup()
           
 HighLevelGroup HLActivitySet.getGroup(java.lang.String name)
           
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation that return types with arguments of type HighLevelGroup
 java.util.List<HighLevelGroup> HLActivitySet.getGroups()
           
 java.util.List<HighLevelGroup> HLPetriNet.getGroups()
           
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation with parameters of type HighLevelGroup
 boolean HLActivitySet.addGroup(HighLevelGroup grp)
           
 boolean HLPetriNet.addGroup(HighLevelGroup grp)
           
 boolean HLActivitySet.addResourceToGroup(HighLevelGroup group, HighLevelResource resource)
           
 boolean HLPetriNet.addResourceToGroup(HighLevelGroup group, HighLevelResource resource)
           
 boolean HLActivity.removeGroup(HighLevelGroup group)
           
 boolean HLActivitySet.removeGroup(HighLevelGroup grp)
           
 boolean HLPetriNet.removeGroup(HighLevelGroup grp)
           
 boolean HLTransition.removeGroup(HighLevelGroup grp)
          Removes the given group from this activity.
 boolean HLActivitySet.removeResourceFromGroup(HighLevelGroup group, HighLevelResource resource)
           
 boolean HLPetriNet.removeResourceFromGroup(HighLevelGroup group, HighLevelResource resource)
          Removes the given resource from the given group.
 void HLActivity.setGroup(HighLevelGroup group)
           
 void HLTransition.setGroup(HighLevelGroup group)
           
 

Uses of HighLevelGroup in org.processmining.framework.models.hlprocess
 

Methods in org.processmining.framework.models.hlprocess that return HighLevelGroup
 HighLevelGroup HighLevelProcess.addGroup(java.lang.String name)
          Creates a new group for this process.
 HighLevelGroup HighLevelActivity.getGroup()
          Retrieves the group for this activity.
 

Methods in org.processmining.framework.models.hlprocess that return types with arguments of type HighLevelGroup
 java.util.List<HighLevelGroup> HighLevelProcess.getGroups()
          Retrieves the list of groups available for this process.
 

Methods in org.processmining.framework.models.hlprocess with parameters of type HighLevelGroup
 boolean HighLevelProcess.addGroup(HighLevelGroup grp)
          Adds a group to this process.
 boolean HighLevelProcess.addResourceToGroup(HighLevelGroup group, HighLevelResource resource)
          Adds the given resource to the given group.
 boolean HighLevelActivity.removeGroup(HighLevelGroup group)
          Removes the given group from this activity.
 boolean HighLevelProcess.removeGroup(HighLevelGroup grp)
          Removes the given group from this process.
 boolean HighLevelProcess.removeResourceFromGroup(HighLevelGroup group, HighLevelResource resource)
          Removes the given resource from the given group.
 void HighLevelActivity.setGroup(HighLevelGroup group)
          Defines a group for this activity.