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

Public Member Functions

boolean doEnter ()
 
boolean doLeave (boolean forwards)
 
boolean doFinish ()
 
- Public Member Functions inherited from org.turro.zkoss.wizard.WizardPanelComposer
Object getObjectValue ()
 
void setObjectValue (Object objectValue)
 
boolean doCancel ()
 
void setShouldSkip (boolean shouldSkip)
 
void setFinalSplash (boolean finalSplash)
 
void setAllowPrior (boolean allowPrior)
 
void setAllowNext (boolean allowNext)
 
void setAllowFinish (boolean allowFinish)
 
void setAllowCancel (boolean allowCancel)
 
boolean isShouldSkip ()
 
boolean isFinalSplash ()
 
boolean isAllowPrior ()
 
boolean isAllowNext ()
 
boolean isAllowFinish ()
 
boolean isAllowCancel ()
 

Detailed Description

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

Definition at line 31 of file RelationPanel.java.

Member Function Documentation

◆ doEnter()

boolean org.turro.issue.wizard.RelationPanel.doEnter ( )

Reimplemented from org.turro.zkoss.wizard.WizardPanelComposer.

Definition at line 36 of file RelationPanel.java.

36  {
37  Application app = Application.getApplication();
38  IssueWizard iw = (IssueWizard) getObjectValue();
39  relations.setChanges(iw.changes);
40  relations.setIssue(iw.issue);
41  relations.afterCompose();
42  return true;
43  }
Here is the call graph for this function:

◆ doFinish()

boolean org.turro.issue.wizard.RelationPanel.doFinish ( )

Reimplemented from org.turro.zkoss.wizard.WizardPanelComposer.

Definition at line 53 of file RelationPanel.java.

53  {
54  IssueWizard iw = (IssueWizard) getObjectValue();
55  ResolvePanel.saveIssue(iw, false);
56  return true;
57  }
Here is the call graph for this function:

◆ doLeave()

boolean org.turro.issue.wizard.RelationPanel.doLeave ( boolean  forwards)

Reimplemented from org.turro.zkoss.wizard.WizardPanelComposer.

Definition at line 46 of file RelationPanel.java.

46  {
47  IssueWizard iw = (IssueWizard) getObjectValue();
48  IssueWrapper w = new IssueWrapper(iw.issue);
49  return !forwards || ( true );
50  }
Here is the call graph for this function:

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