BrightSide Workbench Full Report + Source Code
org.turro.zkoss.wizard.WizardPanelOld Class Reference
Inheritance diagram for org.turro.zkoss.wizard.WizardPanelOld:
Collaboration diagram for org.turro.zkoss.wizard.WizardPanelOld:

Public Member Functions

 WizardPanelOld (String label)
 
boolean doEnter ()
 
boolean doLeave ()
 
String getLabel ()
 
void setWizard (WizardOld wizard)
 
boolean isAllowCancel ()
 
void setAllowCancel (boolean allowCancel)
 
boolean isAllowFinish ()
 
void setAllowFinish (boolean allowFinish)
 
boolean isAllowNext ()
 
void setAllowNext (boolean allowNext)
 
boolean isAllowPrior ()
 
void setAllowPrior (boolean allowPrior)
 
boolean isShouldSkip ()
 
void setShouldSkip (boolean shouldSkip)
 

Protected Member Functions

void updateWizard ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 26 of file WizardPanelOld.java.

Constructor & Destructor Documentation

◆ WizardPanelOld()

org.turro.zkoss.wizard.WizardPanelOld.WizardPanelOld ( String  label)

Definition at line 32 of file WizardPanelOld.java.

32  {
33  this.label = label;
34  setHflex("1");
35  setVflex("1");
36  }

Member Function Documentation

◆ doEnter()

boolean org.turro.zkoss.wizard.WizardPanelOld.doEnter ( )

Definition at line 38 of file WizardPanelOld.java.

38  {
39  return true;
40  }
Here is the caller graph for this function:

◆ doLeave()

boolean org.turro.zkoss.wizard.WizardPanelOld.doLeave ( )

Definition at line 42 of file WizardPanelOld.java.

42  {
43  return true;
44  }

◆ getLabel()

String org.turro.zkoss.wizard.WizardPanelOld.getLabel ( )

Definition at line 46 of file WizardPanelOld.java.

46  {
47  return label;
48  }
Here is the caller graph for this function:

◆ isAllowCancel()

boolean org.turro.zkoss.wizard.WizardPanelOld.isAllowCancel ( )

Definition at line 54 of file WizardPanelOld.java.

54  {
55  return allowCancel;
56  }
Here is the caller graph for this function:

◆ isAllowFinish()

boolean org.turro.zkoss.wizard.WizardPanelOld.isAllowFinish ( )

Definition at line 63 of file WizardPanelOld.java.

63  {
64  return allowFinish;
65  }
Here is the caller graph for this function:

◆ isAllowNext()

boolean org.turro.zkoss.wizard.WizardPanelOld.isAllowNext ( )

Definition at line 72 of file WizardPanelOld.java.

72  {
73  return allowNext;
74  }
Here is the caller graph for this function:

◆ isAllowPrior()

boolean org.turro.zkoss.wizard.WizardPanelOld.isAllowPrior ( )

Definition at line 81 of file WizardPanelOld.java.

81  {
82  return allowPrior;
83  }
Here is the caller graph for this function:

◆ isShouldSkip()

boolean org.turro.zkoss.wizard.WizardPanelOld.isShouldSkip ( )

Definition at line 90 of file WizardPanelOld.java.

90  {
91  return shouldSkip;
92  }
Here is the caller graph for this function:

◆ setAllowCancel()

void org.turro.zkoss.wizard.WizardPanelOld.setAllowCancel ( boolean  allowCancel)

Definition at line 58 of file WizardPanelOld.java.

58  {
59  this.allowCancel = allowCancel;
60  updateWizard();
61  }
Here is the call graph for this function:

◆ setAllowFinish()

void org.turro.zkoss.wizard.WizardPanelOld.setAllowFinish ( boolean  allowFinish)

Definition at line 67 of file WizardPanelOld.java.

67  {
68  this.allowFinish = allowFinish;
69  updateWizard();
70  }
Here is the call graph for this function:

◆ setAllowNext()

void org.turro.zkoss.wizard.WizardPanelOld.setAllowNext ( boolean  allowNext)

Definition at line 76 of file WizardPanelOld.java.

76  {
77  this.allowNext = allowNext;
78  updateWizard();
79  }
Here is the call graph for this function:

◆ setAllowPrior()

void org.turro.zkoss.wizard.WizardPanelOld.setAllowPrior ( boolean  allowPrior)

Definition at line 85 of file WizardPanelOld.java.

85  {
86  this.allowPrior = allowPrior;
87  updateWizard();
88  }
Here is the call graph for this function:

◆ setShouldSkip()

void org.turro.zkoss.wizard.WizardPanelOld.setShouldSkip ( boolean  shouldSkip)

Definition at line 94 of file WizardPanelOld.java.

94  {
95  this.shouldSkip = shouldSkip;
96  }

◆ setWizard()

void org.turro.zkoss.wizard.WizardPanelOld.setWizard ( WizardOld  wizard)

Definition at line 50 of file WizardPanelOld.java.

50  {
51  this.wizard = wizard;
52  }
Here is the caller graph for this function:

◆ updateWizard()

void org.turro.zkoss.wizard.WizardPanelOld.updateWizard ( )
protected

Definition at line 98 of file WizardPanelOld.java.

Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following file: