Class MoveAbstract
- java.lang.Object
-
- org.processmining.partialorder.models.palignment.move.MoveAbstract
-
- All Implemented Interfaces:
Move
- Direct Known Subclasses:
MoveLogImp,MoveModel,MoveSyncImp
public abstract class MoveAbstract extends java.lang.Object implements Move
-
-
Field Summary
Fields Modifier and Type Field Description protected org.deckfour.xes.model.XEventeventprotected inteventIndexprotected intmoveIndexprotected org.processmining.models.graphbased.directed.petrinet.elements.Transitiontransition
-
Constructor Summary
Constructors Constructor Description MoveAbstract(int moveIndex)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Moveclone()org.deckfour.xes.model.XEventgetEvent()intgetEventIndex()intgetMoveIndex()org.processmining.models.graphbased.directed.petrinet.elements.TransitiongetTransition()voidsetEvent(org.deckfour.xes.model.XEvent event)voidsetEventIndex(int eventIndex)voidsetTransition(org.processmining.models.graphbased.directed.petrinet.elements.Transition transition)-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.processmining.partialorder.models.palignment.Move
isLogMove, isModelMove, isSilentModelMove, isSyncMove, isVisibleModelMove
-
-
-
-
Method Detail
-
clone
public abstract Move clone()
-
getEventIndex
public int getEventIndex()
- Specified by:
getEventIndexin interfaceMove
-
setEventIndex
public void setEventIndex(int eventIndex)
-
setEvent
public void setEvent(org.deckfour.xes.model.XEvent event)
-
getTransition
public org.processmining.models.graphbased.directed.petrinet.elements.Transition getTransition()
- Specified by:
getTransitionin interfaceMove
-
setTransition
public void setTransition(org.processmining.models.graphbased.directed.petrinet.elements.Transition transition)
-
getMoveIndex
public int getMoveIndex()
- Specified by:
getMoveIndexin interfaceMove
-
-