Package org.openxava.actions
Interface ICustomViewAction
-
- All Superinterfaces:
IAction
- All Known Subinterfaces:
ILoadFileAction
,INavigationAction
- All Known Implementing Classes:
AddColumnsAction
,AddElementsToCollectionAction
,CancelAction
,CancelFromCustomListAction
,CancelInListAction
,CancelToDefaultControllersAction
,ChooseIconAction
,ChooseReferenceAction
,ConfigureImportAction
,GoAddColumnsAction
,GoAddElementsToCollectionAction
,GoChangeListConfigurationAction
,GoChooseIconAction
,GoListAction
,GoSaveListConfigurationAction
,NavigationAction
,ReferenceSearchAction
,RemoveListConfigurationAction
,RestoreDefaultColumnsAction
,ReturnAction
,SaveListConfigurationNameAction
,SetCustomViewAction
public interface ICustomViewAction extends IAction
- Author:
- Javier Paniza
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DEFAULT_VIEW
static java.lang.String
PREVIOUS_VIEW
static java.lang.String
SAME_VIEW
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCustomView()
The id of a view made directly by developer (not OpenXava view).-
Methods inherited from interface org.openxava.actions.IAction
execute, getErrors, getMessages, setEnvironment, setErrors, setMessages
-
-
-
-
Field Detail
-
DEFAULT_VIEW
static final java.lang.String DEFAULT_VIEW
- See Also:
- Constant Field Values
-
PREVIOUS_VIEW
static final java.lang.String PREVIOUS_VIEW
- See Also:
- Constant Field Values
-
SAME_VIEW
static final java.lang.String SAME_VIEW
-
-
Method Detail
-
getCustomView
java.lang.String getCustomView() throws java.lang.Exception
The id of a view made directly by developer (not OpenXava view).In web version is the name of jsp page (without .jsp extension). This is for inserting jsp (o swing) hand made view in our OpenXava application.
- Throws:
java.lang.Exception
-
-