Class Region
- java.lang.Object
-
- org.processmining.primeminer.models.Region
-
public class Region extends java.lang.ObjectModel of a region This region holds a list with states belongs to this region- Author:
- Robin Bergenthum, Raphael Meyer
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ArrayList<State>getStates()voidsetStates(java.util.ArrayList<State> states)java.lang.StringtoString()toString output with the states of the current region
-
-
-
Constructor Detail
-
Region
public Region()
Default constructor
-
Region
public Region(java.util.ArrayList<State> states)
Constructor with states- Parameters:
states- the states of the current region
-
-
Method Detail
-
toString
public java.lang.String toString()
toString output with the states of the current region- Overrides:
toStringin classjava.lang.Object
-
getStates
public java.util.ArrayList<State> getStates()
- Returns:
- states of current region
-
setStates
public void setStates(java.util.ArrayList<State> states)
- Parameters:
states- set states of current region
-
-