Class AbstractDelegator<T>
- java.lang.Object
-
- org.processmining.specpp.componenting.delegators.AbstractDelegator<T>
-
- Direct Known Subclasses:
AbstractFCSUDelegator,DelegatingAdHocObservable,DelegatingDataSource,DelegatingEvaluator,DelegatingObservable,DelegatingObservationPipe,DelegatingObserver,ObservationCollection,WrappedMap
public abstract class AbstractDelegator<T> extends java.lang.Object implements Delegator<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractDelegator()AbstractDelegator(T delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)TgetDelegate()inthashCode()booleanisSet()voidsetDelegate(T delegate)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.processmining.specpp.componenting.delegators.Container
isNonEmpty
-
Methods inherited from interface org.processmining.specpp.componenting.delegators.Delegator
addContent, isEmpty, isFull
-
-
-
-
Field Detail
-
delegate
protected T delegate
-
-
Constructor Detail
-
AbstractDelegator
public AbstractDelegator()
-
AbstractDelegator
public AbstractDelegator(T delegate)
-
-
Method Detail
-
setDelegate
public void setDelegate(T delegate)
- Specified by:
setDelegatein interfaceDelegator<T>
-
getDelegate
public T getDelegate()
- Specified by:
getDelegatein interfaceDelegator<T>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-