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

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 30 of file AttachPanel.java.

Member Function Documentation

◆ doEnter()

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

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

Definition at line 35 of file AttachPanel.java.

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

◆ doFinish()

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

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

Definition at line 52 of file AttachPanel.java.

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

◆ doLeave()

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

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

Definition at line 45 of file AttachPanel.java.

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

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