Uses of Class
org.processmining.models.graphbased.directed.petrinet.elements.Place

Packages that use Place
org.processmining.models.connections.petrinets   
org.processmining.models.graphbased.directed.petrinet   
org.processmining.models.graphbased.directed.petrinet.analysis   
org.processmining.models.graphbased.directed.petrinet.configurable   
org.processmining.models.graphbased.directed.petrinet.configurable.elements   
org.processmining.models.graphbased.directed.petrinet.elements   
org.processmining.models.graphbased.directed.petrinet.impl   
org.processmining.models.semantics.petrinet   
org.processmining.plugins.petrinet.configurable.ui.impl   
org.processmining.plugins.pnml   
org.processmining.plugins.pnml.extensions   
org.processmining.plugins.pnml.extensions.configurations   
org.processmining.plugins.pnml.extensions.opennet   
 

Uses of Place in org.processmining.models.connections.petrinets
 

Methods in org.processmining.models.connections.petrinets that return types with arguments of type Place
 java.util.Map<Place,Place> PetrinetGraphConnection.getPlaceMapping()
          Returns the mapping from places in source to places in target
 java.util.Map<Place,Place> PetrinetGraphConnection.getPlaceMapping()
          Returns the mapping from places in source to places in target
 

Constructor parameters in org.processmining.models.connections.petrinets with type arguments of type Place
PetrinetGraphConnection(PetrinetGraph source, PetrinetGraph target, java.util.Map<Transition,Transition> transitionMap, java.util.Map<Place,Place> placeMap)
          Connects the two Petri nets through the mappings described in the transitions and place map.
PetrinetGraphConnection(PetrinetGraph source, PetrinetGraph target, java.util.Map<Transition,Transition> transitionMap, java.util.Map<Place,Place> placeMap)
          Connects the two Petri nets through the mappings described in the transitions and place map.
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet
 

Methods in org.processmining.models.graphbased.directed.petrinet that return Place
 Place PetrinetGraph.addPlace(java.lang.String label)
           
 Place PetrinetGraph.addPlace(java.lang.String label, ExpandableSubNet parent)
           
 Place PetrinetGraph.removePlace(Place place)
           
 

Methods in org.processmining.models.graphbased.directed.petrinet that return types with arguments of type Place
 java.util.Collection<Place> PetrinetGraph.getPlaces()
           
 

Methods in org.processmining.models.graphbased.directed.petrinet with parameters of type Place
 Arc PetrinetGraph.addArc(Place p, Transition t)
           
 Arc PetrinetGraph.addArc(Place p, Transition t, ExpandableSubNet parent)
           
 Arc PetrinetGraph.addArc(Place p, Transition t, int weight)
           
 Arc PetrinetGraph.addArc(Place p, Transition t, int weight, ExpandableSubNet parent)
           
 Arc PetrinetGraph.addArc(Transition t, Place p)
           
 Arc PetrinetGraph.addArc(Transition t, Place p, ExpandableSubNet parent)
           
 Arc PetrinetGraph.addArc(Transition t, Place p, int weight)
           
 Arc PetrinetGraph.addArc(Transition t, Place p, int weight, ExpandableSubNet parent)
           
 InhibitorArc InhibitorNet.addInhibitorArc(Place p, Transition t)
           
 InhibitorArc ResetInhibitorNet.addInhibitorArc(Place p, Transition t)
           
 InhibitorArc InhibitorNet.addInhibitorArc(Place p, Transition t, ExpandableSubNet parent)
           
 InhibitorArc ResetInhibitorNet.addInhibitorArc(Place p, Transition t, ExpandableSubNet parent)
           
 InhibitorArc InhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label)
           
 InhibitorArc ResetInhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label)
           
 InhibitorArc InhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 InhibitorArc ResetInhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 ResetArc ResetInhibitorNet.addResetArc(Place p, Transition t)
           
 ResetArc ResetNet.addResetArc(Place p, Transition t)
           
 ResetArc ResetInhibitorNet.addResetArc(Place p, Transition t, ExpandableSubNet parent)
           
 ResetArc ResetNet.addResetArc(Place p, Transition t, ExpandableSubNet parent)
           
 ResetArc ResetInhibitorNet.addResetArc(Place p, Transition t, java.lang.String label)
           
 ResetArc ResetNet.addResetArc(Place p, Transition t, java.lang.String label)
           
 ResetArc ResetInhibitorNet.addResetArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 ResetArc ResetNet.addResetArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 InhibitorArc InhibitorNet.getInhibitorArc(Place p, Transition t)
           
 InhibitorArc ResetInhibitorNet.getInhibitorArc(Place p, Transition t)
           
 ResetArc ResetInhibitorNet.getResetArc(Place p, Transition t)
           
 ResetArc ResetNet.getResetArc(Place p, Transition t)
           
 InhibitorArc InhibitorNet.removeInhibitorArc(Place p, Transition t)
           
 InhibitorArc ResetInhibitorNet.removeInhibitorArc(Place p, Transition t)
           
 Place PetrinetGraph.removePlace(Place place)
           
 ResetArc ResetInhibitorNet.removeResetArc(Place p, Transition t)
           
 ResetArc ResetNet.removeResetArc(Place p, Transition t)
           
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet.analysis
 

Methods in org.processmining.models.graphbased.directed.petrinet.analysis that return Place
static Place WorkflowNetUtils.getInputPlace(Petrinet net)
          Returns the input place of this net.
static Place WorkflowNetUtils.getOutputPlace(Petrinet net)
          Returns the output place of this net.
 

Methods in org.processmining.models.graphbased.directed.petrinet.analysis that return types with arguments of type Place
static java.util.SortedSet<Place> WorkflowNetUtils.getSinkPlaces(Petrinet net)
          Returns the set of sink places of this net.
static java.util.SortedSet<Place> WorkflowNetUtils.getSourcePlaces(Petrinet net)
          Returns the set of source places of this net.
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet.configurable
 

Methods in org.processmining.models.graphbased.directed.petrinet.configurable with parameters of type Place
static ConfigurableFeatureGroup ConfigurableFeatureGroup.createDefaultFeatureGroup(Place p, Marking m)
          Create a configurable feature group for the presence of a place and its initial marking.
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet.configurable.elements
 

Methods in org.processmining.models.graphbased.directed.petrinet.configurable.elements that return types with arguments of type Place
 ConfigurableFeature<Place,ConfigurableGraphElementOption> ConfigurablePlace.cloneFor(Place newElement)
           
 ConfigurableFeature<Place,java.lang.Integer> ConfigurablePlaceMarking.cloneFor(Place newElement)
           
 ConfigurableFeature<Place,java.lang.Integer> ParameterizedPlaceMarking.cloneFor(Place newElement)
           
 

Methods in org.processmining.models.graphbased.directed.petrinet.configurable.elements with parameters of type Place
 ConfigurableFeature<Place,ConfigurableGraphElementOption> ConfigurablePlace.cloneFor(Place newElement)
           
 ConfigurableFeature<Place,java.lang.Integer> ConfigurablePlaceMarking.cloneFor(Place newElement)
           
 ConfigurableFeature<Place,java.lang.Integer> ParameterizedPlaceMarking.cloneFor(Place newElement)
           
 

Constructors in org.processmining.models.graphbased.directed.petrinet.configurable.elements with parameters of type Place
ConfigurablePlace(java.lang.String id, Place element, ConfigurableGraphElementOption[] values, ConfigurableGraphElementOption defaultValue)
           
ConfigurablePlaceMarking(java.lang.String id, Place element, java.lang.Integer min, java.lang.Integer max, java.lang.Integer defaultValue)
           
ParameterizedPlaceMarking(Place element, java.lang.Integer min, java.lang.Integer max, java.lang.String expression, java.util.List<ConfigurableParameter<java.lang.Integer>> inputParameters)
          Create a new parameterized marking of this place.
ParameterizedPlaceMarking(java.lang.String id, Place element, java.lang.Integer min, java.lang.Integer max, java.lang.String expression, java.util.List<ConfigurableParameter<java.lang.Integer>> inputParameters)
          Create a new parameterized marking of this place.
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet.elements
 

Constructors in org.processmining.models.graphbased.directed.petrinet.elements with parameters of type Place
InhibitorArc(Place source, Transition target, java.lang.String label)
           
InhibitorArc(Place source, Transition target, java.lang.String label, ExpandableSubNet parent)
           
ResetArc(Place source, Transition target, java.lang.String label)
           
ResetArc(Place source, Transition target, java.lang.String label, ExpandableSubNet parent)
           
 

Uses of Place in org.processmining.models.graphbased.directed.petrinet.impl
 

Fields in org.processmining.models.graphbased.directed.petrinet.impl with type parameters of type Place
protected  java.util.Set<Place> AbstractResetInhibitorNet.places
           
 

Methods in org.processmining.models.graphbased.directed.petrinet.impl that return Place
 Place AbstractResetInhibitorNet.addPlace(java.lang.String label)
           
 Place AbstractResetInhibitorNet.addPlace(java.lang.String label, ExpandableSubNet parent)
           
 Place AbstractResetInhibitorNet.removePlace(Place place)
           
 

Methods in org.processmining.models.graphbased.directed.petrinet.impl that return types with arguments of type Place
 java.util.Collection<Place> AbstractResetInhibitorNet.getPlaces()
           
 

Methods in org.processmining.models.graphbased.directed.petrinet.impl with parameters of type Place
 Arc AbstractResetInhibitorNet.addArc(Place p, Transition t)
           
 Arc AbstractResetInhibitorNet.addArc(Place p, Transition t, ExpandableSubNet parent)
           
 Arc AbstractResetInhibitorNet.addArc(Place p, Transition t, int weight)
           
 Arc AbstractResetInhibitorNet.addArc(Place p, Transition t, int weight, ExpandableSubNet parent)
           
 Arc AbstractResetInhibitorNet.addArc(Transition t, Place p)
           
 Arc AbstractResetInhibitorNet.addArc(Transition t, Place p, ExpandableSubNet parent)
           
 Arc AbstractResetInhibitorNet.addArc(Transition t, Place p, int weight)
           
 Arc AbstractResetInhibitorNet.addArc(Transition t, Place p, int weight, ExpandableSubNet parent)
           
 InhibitorArc AbstractResetInhibitorNet.addInhibitorArc(Place p, Transition t)
           
 InhibitorArc AbstractResetInhibitorNet.addInhibitorArc(Place p, Transition t, ExpandableSubNet parent)
           
 InhibitorArc AbstractResetInhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label)
           
 InhibitorArc AbstractResetInhibitorNet.addInhibitorArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 ResetArc AbstractResetInhibitorNet.addResetArc(Place p, Transition t)
           
 ResetArc AbstractResetInhibitorNet.addResetArc(Place p, Transition t, ExpandableSubNet parent)
           
 ResetArc AbstractResetInhibitorNet.addResetArc(Place p, Transition t, java.lang.String label)
           
 ResetArc AbstractResetInhibitorNet.addResetArc(Place p, Transition t, java.lang.String label, ExpandableSubNet parent)
           
 InhibitorArc AbstractResetInhibitorNet.getInhibitorArc(Place p, Transition t)
           
 ResetArc AbstractResetInhibitorNet.getResetArc(Place p, Transition t)
           
 InhibitorArc AbstractResetInhibitorNet.removeInhibitorArc(Place p, Transition t)
           
 Place AbstractResetInhibitorNet.removePlace(Place place)
           
 ResetArc AbstractResetInhibitorNet.removeResetArc(Place p, Transition t)
           
 

Uses of Place in org.processmining.models.semantics.petrinet
 

Methods in org.processmining.models.semantics.petrinet with type parameters of type Place
protected
<S extends org.processmining.framework.util.collection.MultiSet<Place>>
S
CTMarking.removeAllMultiSet(org.processmining.framework.util.collection.AbstractMultiSet<?,?> mset, S removed)
           
 

Methods in org.processmining.models.semantics.petrinet that return types with arguments of type Place
 java.util.Set<Place> CTMarking.getOmegaPlaces()
          Get a set of omega places
 

Methods in org.processmining.models.semantics.petrinet with parameters of type Place
 boolean CTMarking.addOmegaPlace(Place p)
          Add a place which should be presented with omega
 boolean CTMarking.removeOmegaPlace(Place removedItem)
          Remove a place from the list of omega places
 

Method parameters in org.processmining.models.semantics.petrinet with type arguments of type Place
 boolean CTMarking.isLessOrEqual(org.processmining.framework.util.collection.MultiSet<Place> multiSet)
          returns true if this multiset is less or equal to the given multiset, i.e.
 CTMarking CTMarking.transformToOmega(java.util.Collection<Place> reference)
          transform all places in this CTMarking into omega.
 

Constructor parameters in org.processmining.models.semantics.petrinet with type arguments of type Place
CTMarking(java.util.Collection<Place> collection)
          Constructor with collection parameter
Marking(java.util.Collection<Place> collection)
           
 

Uses of Place in org.processmining.plugins.petrinet.configurable.ui.impl
 

Methods in org.processmining.plugins.petrinet.configurable.ui.impl that return types with arguments of type Place
 ConfigurableGraphElementFeature<Place> ConfigurableGraphElement_UI.ConfigurablePlace_UI.getConfigured()
           
 ConfigurableIntegerFeature<Place> ConfigurableIntegerFeature_UI.ConfigurablePlaceMarkingFeature_UI.getConfigured()
           
 

Constructor parameters in org.processmining.plugins.petrinet.configurable.ui.impl with type arguments of type Place
ConfigurableGraphElement_UI.ConfigurablePlace_UI(javax.swing.JComponent root, ConfigurableGraphElementFeature<Place> feature, int line_height)
           
ConfigurableIntegerFeature_UI.ConfigurablePlaceMarkingFeature_UI(javax.swing.JComponent root, ConfigurableIntegerFeature<Place> feature, int line_height)
           
 

Uses of Place in org.processmining.plugins.pnml
 

Methods in org.processmining.plugins.pnml with parameters of type Place
 PnmlReferencePlace PnmlPage.convertFromNet(ExpandableSubNet parent, Place place, java.util.Map<org.processmining.framework.util.Pair<org.processmining.models.graphbased.AbstractGraphElement,ExpandableSubNet>,java.lang.String> idMap, org.processmining.models.connections.GraphLayoutConnection layout)
           
 PnmlReferencePlace PnmlReferencePlace.convertFromNet(ExpandableSubNet parent, Place place, java.util.Map<org.processmining.framework.util.Pair<org.processmining.models.graphbased.AbstractGraphElement,ExpandableSubNet>,java.lang.String> idMap, org.processmining.models.connections.GraphLayoutConnection layout)
           
 PnmlPlace PnmlPlace.convertFromNet(Marking marking, ExpandableSubNet parent, Place place, java.util.Map<org.processmining.framework.util.Pair<org.processmining.models.graphbased.AbstractGraphElement,ExpandableSubNet>,java.lang.String> idMap, org.processmining.models.connections.GraphLayoutConnection layout)
           
 

Method parameters in org.processmining.plugins.pnml with type arguments of type Place
 void PnmlPage.convertToNet(PetrinetGraph net, ExpandableSubNet subNet, int pageCtr, Marking marking, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap, java.awt.geom.Point2D.Double displacement, boolean createGroup, org.processmining.models.connections.GraphLayoutConnection layout)
          Converts this page to a Petri net.
 void PnmlReferencePlace.convertToNet(PetrinetGraph net, ExpandableSubNet subNet, java.util.Map<java.lang.String,Place> map)
          Converts this reference place to a regular Petri net place.
 void PnmlArc.convertToNet(PetrinetGraph net, ExpandableSubNet subNet, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap, java.awt.geom.Point2D.Double displacement, org.processmining.models.connections.GraphLayoutConnection layout)
          Converts this PNML arc to a regular Petri net arc.
 void PnmlPlace.convertToNet(PetrinetGraph net, ExpandableSubNet subNet, Marking marking, java.util.Map<java.lang.String,Place> map, java.awt.geom.Point2D.Double displacement, org.processmining.models.connections.GraphLayoutConnection layout)
          Converts this place to a Petri net place.
 void PnmlNet.convertToNet(PetrinetGraph net, Marking marking, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap, org.processmining.models.connections.GraphLayoutConnection layout)
          Convert this net to a Petri net.
 

Uses of Place in org.processmining.plugins.pnml.extensions
 

Methods in org.processmining.plugins.pnml.extensions with parameters of type Place
 PnmlInitialMarking PnmlInitialMarking.convertFromNet(Marking marking, Place place)
           
 

Uses of Place in org.processmining.plugins.pnml.extensions.configurations
 

Method parameters in org.processmining.plugins.pnml.extensions.configurations with type arguments of type Place
 void PnmlFeature.convertToNet(PetrinetGraph net, ConfigurableFeatureGroup group, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap)
           
 void PnmlConfiguration.convertToNet(PetrinetGraph net, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap)
           
 void PnmlGroup.convertToNet(PetrinetGraph net, java.util.Map<java.lang.String,Place> placeMap, java.util.Map<java.lang.String,Transition> transitionMap, java.util.Map<java.lang.String,PetrinetEdge<? extends PetrinetNode,? extends PetrinetNode>> edgeMap)
           
 

Uses of Place in org.processmining.plugins.pnml.extensions.opennet
 

Method parameters in org.processmining.plugins.pnml.extensions.opennet with type arguments of type Place
 PnmlFinalMarkings PnmlFinalMarkings.convertFromOpenNet(java.util.Collection<? extends Place> places, java.util.Collection<Marking> markings, java.util.Map<org.processmining.framework.util.Pair<org.processmining.models.graphbased.AbstractGraphElement,ExpandableSubNet>,java.lang.String> map)
           
 PnmlFinalMarking PnmlFinalMarking.convertFromOpenNet(java.util.Collection<? extends Place> places, Marking marking, java.util.Map<org.processmining.framework.util.Pair<org.processmining.models.graphbased.AbstractGraphElement,ExpandableSubNet>,java.lang.String> map)
           
 void PnmlMarkedPlace.convertToOpenNet(Marking marking, java.util.Map<java.lang.String,Place> placeMap)
           
 void PnmlFinalMarking.convertToOpenNet(OpenNet openNet, java.util.Map<java.lang.String,Place> placeMap)
           
 void PnmlFinalMarkings.convertToOpenNet(OpenNet openNet, java.util.Map<java.lang.String,Place> placeMap)