BrightSide Workbench Full Report + Source Code
org.turro.financials.treasury.settlement.SettlementGrid Class Reference
Inheritance diagram for org.turro.financials.treasury.settlement.SettlementGrid:
Collaboration diagram for org.turro.financials.treasury.settlement.SettlementGrid:

Public Member Functions

 SettlementGrid ()
 
void setDate (Date date)
 
void setSettlementDate (Date date)
 
void doRegister (Contract store)
 
- Public Member Functions inherited from org.turro.zkoss.layout.GridLayout
 GridLayout ()
 
 GridLayout (int columns)
 
 GridLayout (String hflexs)
 
void setColumns (int columns)
 
void setColumns (String hflexs)
 
void setColCaptions (String captions)
 
void setColCaptions (String[] captions)
 
void clearRows ()
 
GridLayout addGroup (String title, boolean open)
 
GridLayout addRow ()
 
GridLayout insertBeforeRow (Row row)
 
GridLayout addCaption (String label)
 
GridLayout addValue (String value)
 
GridLayout addBoldValue (String value)
 
GridLayout addComponent (HtmlBasedComponent comp)
 
GridLayout addSpannedComponent (HtmlBasedComponent comp, int cols)
 
GridLayout addRowSpannedComponent (HtmlBasedComponent comp, int rows)
 
GridLayout addSpace ()
 
Row getCurrentRow ()
 
Rows getRows (boolean create)
 
Object getData ()
 
void setData (Object data)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.zkoss.layout.GridLayout
Row currentRow
 

Detailed Description

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

Definition at line 39 of file SettlementGrid.java.

Constructor & Destructor Documentation

◆ SettlementGrid()

org.turro.financials.treasury.settlement.SettlementGrid.SettlementGrid ( )

Definition at line 44 of file SettlementGrid.java.

44  {
45  super("min,1,right-min,min");
46  setColCaptions(new String[] {
47  I_.get("Account"),
48  I_.get("Name"),
49  I_.get("Amount"),
50  "",
51  });
52  }
void setColCaptions(String captions)
Definition: GridLayout.java:94
Here is the call graph for this function:

Member Function Documentation

◆ doRegister()

void org.turro.financials.treasury.settlement.SettlementGrid.doRegister ( Contract  store)

Definition at line 66 of file SettlementGrid.java.

66  {
67  set.generateRegister(store);
68  }

◆ setDate()

void org.turro.financials.treasury.settlement.SettlementGrid.setDate ( Date  date)

Definition at line 54 of file SettlementGrid.java.

54  {
55  Date prevSettDate = set != null ? set.getSettlementDate() : null;
56  set = new SettlementSet();
57  set.setDate(date);
58  set.setSettlementDate(prevSettDate);
59  compose();
60  }

◆ setSettlementDate()

void org.turro.financials.treasury.settlement.SettlementGrid.setSettlementDate ( Date  date)

Definition at line 62 of file SettlementGrid.java.

62  {
63  set.setSettlementDate(date);
64  }

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