Package org.apache.axis2.tools.component
Class DefaultWizardComponents
- java.lang.Object
-
- org.apache.axis2.tools.component.DefaultWizardComponents
-
- All Implemented Interfaces:
Wizard,WizardComponents
public class DefaultWizardComponents extends Object implements WizardComponents
this is used for default wizard components
-
-
Field Summary
-
Fields inherited from interface org.apache.axis2.tools.component.WizardComponents
CURRENT_PANEL_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description DefaultWizardComponents()This class is the "bread and butter" of this framework.
-
Method Summary
-
-
-
Constructor Detail
-
DefaultWizardComponents
public DefaultWizardComponents()
This class is the "bread and butter" of this framework. All of these components can be used visually however you want, as shown in the frame and example packages, but all a developer really needs is this, and they can even instead implement JWizard and choose to do this portion any way they wish.
-
-
Method Detail
-
addWizardPanel
public void addWizardPanel(WizardPanel panel)
- Specified by:
addWizardPanelin interfaceWizard- Specified by:
addWizardPanelin interfaceWizardComponents
-
addWizardPanel
public void addWizardPanel(int index, WizardPanel panel)- Specified by:
addWizardPanelin interfaceWizard- Specified by:
addWizardPanelin interfaceWizardComponents
-
addWizardPanelAfter
public void addWizardPanelAfter(WizardPanel panelToBePlacedAfter, WizardPanel panel)
- Specified by:
addWizardPanelAfterin interfaceWizardComponents
-
addWizardPanelBefore
public void addWizardPanelBefore(WizardPanel panelToBePlacedBefore, WizardPanel panel)
- Specified by:
addWizardPanelBeforein interfaceWizardComponents
-
addWizardPanelAfterCurrent
public void addWizardPanelAfterCurrent(WizardPanel panel)
- Specified by:
addWizardPanelAfterCurrentin interfaceWizardComponents
-
removeWizardPanel
public WizardPanel removeWizardPanel(WizardPanel panel)
- Specified by:
removeWizardPanelin interfaceWizard- Specified by:
removeWizardPanelin interfaceWizardComponents
-
removeWizardPanel
public WizardPanel removeWizardPanel(int index)
- Specified by:
removeWizardPanelin interfaceWizard- Specified by:
removeWizardPanelin interfaceWizardComponents
-
removeWizardPanelAfter
public WizardPanel removeWizardPanelAfter(WizardPanel panel)
- Specified by:
removeWizardPanelAfterin interfaceWizardComponents
-
removeWizardPanelBefore
public WizardPanel removeWizardPanelBefore(WizardPanel panel)
- Specified by:
removeWizardPanelBeforein interfaceWizardComponents
-
getWizardPanel
public WizardPanel getWizardPanel(int index)
- Specified by:
getWizardPanelin interfaceWizard- Specified by:
getWizardPanelin interfaceWizardComponents
-
getIndexOfPanel
public int getIndexOfPanel(WizardPanel panel)
- Specified by:
getIndexOfPanelin interfaceWizardComponents
-
onLastPanel
public boolean onLastPanel()
- Specified by:
onLastPanelin interfaceWizardComponents
-
getCurrentPanel
public WizardPanel getCurrentPanel() throws Exception
- Specified by:
getCurrentPanelin interfaceWizardComponents- Throws:
Exception
-
updateComponents
public void updateComponents()
- Specified by:
updateComponentsin interfaceWizardComponents
-
getWizardPanelList
public List getWizardPanelList()
- Specified by:
getWizardPanelListin interfaceWizard- Specified by:
getWizardPanelListin interfaceWizardComponents
-
setWizardPanelList
public void setWizardPanelList(ArrayList panelList)
-
getFinishAction
public FinishAction getFinishAction()
- Specified by:
getFinishActionin interfaceWizardComponents
-
setFinishAction
public void setFinishAction(FinishAction aFinishAction)
- Specified by:
setFinishActionin interfaceWizardComponents
-
getCancelAction
public CancelAction getCancelAction()
- Specified by:
getCancelActionin interfaceWizardComponents
-
setCancelAction
public void setCancelAction(CancelAction aCancelAction)
- Specified by:
setCancelActionin interfaceWizardComponents
-
getCurrentIndex
public int getCurrentIndex()
- Specified by:
getCurrentIndexin interfaceWizardComponents
-
setCurrentIndex
public void setCurrentIndex(int aCurrentIndex)
- Specified by:
setCurrentIndexin interfaceWizardComponents
-
getWizardPanelsContainer
public JPanel getWizardPanelsContainer()
- Specified by:
getWizardPanelsContainerin interfaceWizardComponents
-
setWizardPanelsContainer
public void setWizardPanelsContainer(JPanel aWizardPanelsContainer)
- Specified by:
setWizardPanelsContainerin interfaceWizardComponents
-
getBackButton
public JButton getBackButton()
- Specified by:
getBackButtonin interfaceWizardComponents
-
setBackButton
public void setBackButton(JButton aBackButton)
- Specified by:
setBackButtonin interfaceWizardComponents
-
getNextButton
public JButton getNextButton()
- Specified by:
getNextButtonin interfaceWizardComponents
-
setNextButton
public void setNextButton(JButton aNextButton)
- Specified by:
setNextButtonin interfaceWizardComponents
-
getCancelButton
public JButton getCancelButton()
- Specified by:
getCancelButtonin interfaceWizardComponents
-
setCancelButton
public void setCancelButton(JButton aCancelButton)
- Specified by:
setCancelButtonin interfaceWizardComponents
-
getFinishButton
public JButton getFinishButton()
- Specified by:
getFinishButtonin interfaceWizardComponents
-
setFinishButton
public void setFinishButton(JButton button)
- Specified by:
setFinishButtonin interfaceWizardComponents
-
setWizardPanelList
public void setWizardPanelList(List panelList)
- Specified by:
setWizardPanelListin interfaceWizard- Specified by:
setWizardPanelListin interfaceWizardComponents
-
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)
- Specified by:
addPropertyChangeListenerin interfaceWizardComponents
-
removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)
- Specified by:
removePropertyChangeListenerin interfaceWizardComponents
-
-