Package kieker.analysis.behavior.model
Class UserBehaviorEdge
java.lang.Object
kieker.analysis.generic.graph.impl.ElementImpl
kieker.analysis.generic.graph.impl.EdgeImpl
kieker.analysis.behavior.model.UserBehaviorEdge
public final class UserBehaviorEdge extends EdgeImpl
The edge between two nodes of a BehaviorModel.
- Since:
- 2.0.0
- Author:
- Lars Jürgensen
-
Constructor Summary
Constructors Constructor Description UserBehaviorEdge(java.lang.String id)
Create a new edge without an entry call event attached.UserBehaviorEdge(java.lang.String id, EntryCallEvent event)
Create a new edge between two nodes. -
Method Summary
Modifier and Type Method Description void
addEvent(EntryCallEvent event)
Add a new event to the edge.java.util.List<EventGroup>
getEventGroups()
Methods inherited from class kieker.analysis.generic.graph.impl.ElementImpl
getId, getProperty, getPropertyKeys, removeProperty, setProperty, setPropertyIfAbsent
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface kieker.analysis.generic.graph.IElement
getId, getProperty, getPropertyKeys, removeProperty, setProperty, setPropertyIfAbsent
-
Constructor Details
-
UserBehaviorEdge
public UserBehaviorEdge(java.lang.String id)Create a new edge without an entry call event attached.- Parameters:
id
- edge id
-
UserBehaviorEdge
Create a new edge between two nodes.- Parameters:
id
- edge idevent
- the event which is represented by the edge
-
-
Method Details
-
addEvent
Add a new event to the edge.- Parameters:
event
- the event which should be added to the edge
-
getEventGroups
-