Package nl.gx.webmanager.springmvc
Interface PanelButton
-
- All Known Implementing Classes:
PanelButtonImpl
public interface PanelButton
Button for a panel.- Author:
- arjans
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PanelButton.BUTTONTYPE
Defined buttontypes.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAction()
Returns action for the doPanelViewSubmit function in the generated HTML INPUT Tag.PanelButton.BUTTONTYPE
getButtonType()
Get the buttonType.boolean
getDisabled()
return the button enabled state.String
getId()
get the id.String
getMessageKey()
get the messageKey.void
setAction(String action)
Set action for the doPanelViewSubmit function in the generated HTML INPUT Tag.void
setDisabled(boolean disabled)
set the button enabled state.void
setId(String id)
set the id.void
setMessageKey(String messageKey)
set the messageKey.
-
-
-
Method Detail
-
getButtonType
PanelButton.BUTTONTYPE getButtonType()
Get the buttonType.- Returns:
- buttonType
-
setMessageKey
void setMessageKey(String messageKey)
set the messageKey.- Parameters:
messageKey
- messageKey
-
getMessageKey
String getMessageKey()
get the messageKey.- Returns:
- messageKey
-
setId
void setId(String id)
set the id.- Parameters:
id
- id
-
getId
String getId()
get the id.- Returns:
- id
-
setDisabled
void setDisabled(boolean disabled)
set the button enabled state.- Parameters:
disabled
- true/false
-
getDisabled
boolean getDisabled()
return the button enabled state.- Returns:
- disabled
-
getAction
String getAction()
Returns action for the doPanelViewSubmit function in the generated HTML INPUT Tag.- Returns:
- action for the doPanelViewSubmit function in the generated HTML INPUT Tag
-
setAction
void setAction(String action)
Set action for the doPanelViewSubmit function in the generated HTML INPUT Tag.- Parameters:
action
- The action to set
-
-