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

Public Member Functions

void setFromDate (Date fromDate)
 
void setToDate (Date toDate)
 
void refresh ()
 
- 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 35 of file m111/ModelGrid.java.

Member Function Documentation

◆ refresh()

void org.turro.financials.treasury.m111.ModelGrid.refresh ( )

Definition at line 48 of file m111/ModelGrid.java.

48  {
49  modelSet = new ModelSet(fromDate, toDate);
50  getChildren().clear();
51  setColumns("1,right-300px,right-100px,right-300px");
52  setColCaptions(new String[] {
53  I_.get("Name"),
54  I_.get("Amount"),
55  I_.get("Percent"),
56  I_.get("% Ret.")
57  });
58  compose();
59  }
void setColCaptions(String captions)
Definition: GridLayout.java:94
Here is the call graph for this function:

◆ setFromDate()

void org.turro.financials.treasury.m111.ModelGrid.setFromDate ( Date  fromDate)

Definition at line 40 of file m111/ModelGrid.java.

40  {
41  this.fromDate = fromDate;
42  }

◆ setToDate()

void org.turro.financials.treasury.m111.ModelGrid.setToDate ( Date  toDate)

Definition at line 44 of file m111/ModelGrid.java.

44  {
45  this.toDate = toDate;
46  }

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