BrightSide Workbench Full Report + Source Code
org.turro.erp.task.wizard.QuickReferencePanel Class Reference
Inheritance diagram for org.turro.erp.task.wizard.QuickReferencePanel:
Collaboration diagram for org.turro.erp.task.wizard.QuickReferencePanel:

Public Member Functions

boolean doEnter ()
 
boolean doLeave (boolean forwards)
 
boolean doCancel ()
 
- Public Member Functions inherited from org.turro.zkoss.wizard.WizardPanelComposer
Object getObjectValue ()
 
void setObjectValue (Object objectValue)
 
boolean doFinish ()
 
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 QuickReferencePanel.java.

Member Function Documentation

◆ doCancel()

boolean org.turro.erp.task.wizard.QuickReferencePanel.doCancel ( )

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

Definition at line 54 of file QuickReferencePanel.java.

54  {
55  OrderReference orderReference = (OrderReference) getObjectValue();
56  orderReference.setDescription(null);
57  orderReference.setProduct(null);
58  return super.doCancel();
59  }
Here is the call graph for this function:

◆ doEnter()

boolean org.turro.erp.task.wizard.QuickReferencePanel.doEnter ( )

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

Definition at line 37 of file QuickReferencePanel.java.

37  {
38  OrderReference orderReference = (OrderReference) getObjectValue();
39  description.setValue(orderReference.getDescription());
40  service.setObjectValue(orderReference.getService());
41  return true;
42  }
Here is the call graph for this function:

◆ doLeave()

boolean org.turro.erp.task.wizard.QuickReferencePanel.doLeave ( boolean  forwards)

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

Definition at line 45 of file QuickReferencePanel.java.

45  {
46  OrderReference orderReference = (OrderReference) getObjectValue();
47  orderReference.setDescription(description.getValue());
48  orderReference.setService(service.getObjectValue());
49  return !forwards || (
50  !Strings.isBlank(description.getValue()));
51  }
Here is the call graph for this function:

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