Class DependencyImp<T>
- java.lang.Object
-
- org.processmining.partialorder.models.dependency.DependencyImp<T>
-
- All Implemented Interfaces:
Dependency<T>
- Direct Known Subclasses:
DependencyXID
public class DependencyImp<T> extends java.lang.Object implements Dependency<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanisDirectlyFollowedprotected Tsourceprotected Ttarget
-
Constructor Summary
Constructors Constructor Description DependencyImp(T source, T target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetSource()TgetTarget()booleanisDirect()voidsetDirect(boolean b)
-
-
-
Method Detail
-
isDirect
public boolean isDirect()
- Specified by:
isDirectin interfaceDependency<T>
-
getSource
public T getSource()
- Specified by:
getSourcein interfaceDependency<T>
-
getTarget
public T getTarget()
- Specified by:
getTargetin interfaceDependency<T>
-
setDirect
public void setDirect(boolean b)
- Specified by:
setDirectin interfaceDependency<T>
-
-