Package org.openxava.actions
Interface IPropertyAction
-
- All Superinterfaces:
IAction
public interface IPropertyAction extends IAction
This action is associated to an property (displayed in User Interface), before execute it the property name and the container view is injected.This interface can be implemented by actions associated to a property using @Action annotation, this way:
- Author:
- Javier Paniza
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setProperty(java.lang.String propertyName)
The name of the property associated to this action,void
setView(View view)
The container view of the property associated to this action.-
Methods inherited from interface org.openxava.actions.IAction
execute, getErrors, getMessages, setEnvironment, setErrors, setMessages
-
-
-
-
Method Detail
-
setProperty
void setProperty(java.lang.String propertyName)
The name of the property associated to this action,
-
setView
void setView(View view)
The container view of the property associated to this action.It's not the main view, but the more inner view when the action resides.
-
-