| org.romaframework.aspect.flow.FlowAspect
All known Subclasses: org.romaframework.aspect.flow.FlowAspectAbstract,
FlowAspect | public interface FlowAspect extends Aspect(Code) | | Flow Aspect behavior interface.
author: Luca Garulli (luca.garulli@assetdata.it) |
Method Summary | |
public void | forward(Object iCurrentObject, Class<? extends Object> iNextClass, String iPosition, boolean iSetBack) Follow the application flow moving forward. | public void | forward(Object iCurrentObject, Object iNextObject, String iPosition, boolean iSetBack) Follow the application flow moving forward. |
forward | public void forward(Object iCurrentObject, Class<? extends Object> iNextClass, String iPosition, boolean iSetBack)(Code) | | Follow the application flow moving forward.
Parameters: iCurrentObject - Current object Parameters: iNextClass - Next class of object to display Parameters: iPosition - Position where to display the object Parameters: iSetBack - true if the next object need to be setted the go-back object, false otherwise. |
forward | public void forward(Object iCurrentObject, Object iNextObject, String iPosition, boolean iSetBack)(Code) | | Follow the application flow moving forward.
Parameters: iCurrentObject - Current object Parameters: iNextClass - Next object to display Parameters: iPosition - Position where to display the object Parameters: iSetBack - true if the next object need to be setted the go-back object, false otherwise. |
|
|