Package io.github.astrapi69.model.api
Interface IWrapModel<T>
-
- Type Parameters:
T
- the generic type of the model object
- All Superinterfaces:
Attachable
,IDetachable
,IModel<T>
,java.io.Serializable
public interface IWrapModel<T> extends IModel<T>
The marker interfaceIWrapModel
represents a model that serves as a decorator for another.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IModel<?>
getWrappedModel()
Gets the wrapped model.-
Methods inherited from interface io.github.astrapi69.model.api.Attachable
attach
-
Methods inherited from interface io.github.astrapi69.model.api.IDetachable
detach
-
-
-
-
Method Detail
-
getWrappedModel
IModel<?> getWrappedModel()
Gets the wrapped model.- Returns:
- the wrapped model
-
-