Package eu.mihosoft.vmf.runtime.core
Interface DelegatedBehavior<T extends VObject>
-
public interface DelegatedBehavior<T extends VObject>
Delegation interface for invoking custom implementations. VMF objects do not support custom extensions by manipulating their implementation code. However, custom behavior can be realized be defining delegation classes that implement this interface.Created by miho on 05.04.17.
- See Also:
- Tutorial on Custom Behavior & Delegation
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
setCaller(T caller)
Sets the caller that delegates to this class.
-
-
-
Method Detail
-
setCaller
default void setCaller(T caller)
Sets the caller that delegates to this class. This method is called by VMF directly after initializing this object.- Parameters:
caller
- the caller that delegates to this class
-
-