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

Public Member Functions

Object getObjectValue ()
 
void setObjectValue (Object objectValue)
 
boolean doEnter ()
 
boolean doLeave (boolean forwards)
 
boolean doFinish ()
 
boolean doCancel ()
 
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 isFinalSplash ()
 
void setFinalSplash (boolean finalSplash)
 
boolean isShouldSkip ()
 
void setShouldSkip (boolean shouldSkip)
 
boolean isSkipFirst ()
 
void setSkipFirst (boolean skipFirst)
 
boolean checkSkipFirst ()
 

Protected Attributes

boolean allowFinish = false
 

Detailed Description

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

Definition at line 27 of file WizardPanel.java.

Member Function Documentation

◆ checkSkipFirst()

boolean org.turro.zkoss.wizard.WizardPanel.checkSkipFirst ( )

Definition at line 121 of file WizardPanel.java.

121  {
122  if(skipFirst) {
123  skipFirst = false;
124  return true;
125  }
126  return false;
127  }
Here is the caller graph for this function:

◆ doCancel()

boolean org.turro.zkoss.wizard.WizardPanel.doCancel ( )

Definition at line 60 of file WizardPanel.java.

60  {
61  return getComposer() == null ? false : getComposer().doCancel();
62  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ doEnter()

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

Definition at line 48 of file WizardPanel.java.

48  {
49  return getComposer() == null ? false : getComposer().doEnter();
50  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ doFinish()

boolean org.turro.zkoss.wizard.WizardPanel.doFinish ( )

Definition at line 56 of file WizardPanel.java.

56  {
57  return getComposer() == null ? false : getComposer().doFinish();
58  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ doLeave()

boolean org.turro.zkoss.wizard.WizardPanel.doLeave ( boolean  forwards)

Definition at line 52 of file WizardPanel.java.

52  {
53  return getComposer() == null ? false : getComposer().doLeave(forwards);
54  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getObjectValue()

Object org.turro.zkoss.wizard.WizardPanel.getObjectValue ( )

Definition at line 40 of file WizardPanel.java.

40  {
41  return objectValue;
42  }

◆ isAllowCancel()

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

Definition at line 64 of file WizardPanel.java.

64  {
65  return allowCancel && !finalSplash;
66  }
Here is the caller graph for this function:

◆ isAllowFinish()

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

Definition at line 72 of file WizardPanel.java.

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

◆ isAllowNext()

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

Definition at line 80 of file WizardPanel.java.

80  {
81  return allowNext && !finalSplash;
82  }
Here is the caller graph for this function:

◆ isAllowPrior()

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

Definition at line 88 of file WizardPanel.java.

88  {
89  return allowPrior && !finalSplash;
90  }
Here is the caller graph for this function:

◆ isFinalSplash()

boolean org.turro.zkoss.wizard.WizardPanel.isFinalSplash ( )

Definition at line 96 of file WizardPanel.java.

96  {
97  return finalSplash;
98  }
Here is the caller graph for this function:

◆ isShouldSkip()

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

Definition at line 105 of file WizardPanel.java.

105  {
106  return shouldSkip;
107  }
Here is the caller graph for this function:

◆ isSkipFirst()

boolean org.turro.zkoss.wizard.WizardPanel.isSkipFirst ( )

Definition at line 113 of file WizardPanel.java.

113  {
114  return skipFirst;
115  }

◆ setAllowCancel()

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

Definition at line 68 of file WizardPanel.java.

68  {
69  this.allowCancel = allowCancel;
70  }

◆ setAllowFinish()

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

Definition at line 76 of file WizardPanel.java.

76  {
77  this.allowFinish = allowFinish;
78  }

◆ setAllowNext()

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

Definition at line 84 of file WizardPanel.java.

84  {
85  this.allowNext = allowNext;
86  }

◆ setAllowPrior()

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

Definition at line 92 of file WizardPanel.java.

92  {
93  this.allowPrior = allowPrior;
94  }

◆ setFinalSplash()

void org.turro.zkoss.wizard.WizardPanel.setFinalSplash ( boolean  finalSplash)

Definition at line 100 of file WizardPanel.java.

100  {
101  this.finalSplash = finalSplash;
102  if(finalSplash) allowFinish = true;
103  }

◆ setObjectValue()

void org.turro.zkoss.wizard.WizardPanel.setObjectValue ( Object  objectValue)

Definition at line 44 of file WizardPanel.java.

44  {
45  this.objectValue = objectValue;
46  }

◆ setShouldSkip()

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

Definition at line 109 of file WizardPanel.java.

109  {
110  this.shouldSkip = shouldSkip;
111  }

◆ setSkipFirst()

void org.turro.zkoss.wizard.WizardPanel.setSkipFirst ( boolean  skipFirst)

Definition at line 117 of file WizardPanel.java.

117  {
118  this.skipFirst = skipFirst;
119  }

Member Data Documentation

◆ allowFinish

boolean org.turro.zkoss.wizard.WizardPanel.allowFinish = false
protected

Definition at line 32 of file WizardPanel.java.


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