BrightSide Workbench Full Report + Source Code
org.turro.financials.register.BalanceTree Class Reference
Inheritance diagram for org.turro.financials.register.BalanceTree:
Collaboration diagram for org.turro.financials.register.BalanceTree:

Public Member Functions

 BalanceTree ()
 
BalanceFilter getFilter ()
 
void setFilter (BalanceFilter filter)
 
void refreshTree ()
 
void afterCompose ()
 
String formatCurrency (double value)
 

Detailed Description

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

Definition at line 33 of file BalanceTree.java.

Constructor & Destructor Documentation

◆ BalanceTree()

org.turro.financials.register.BalanceTree.BalanceTree ( )

Definition at line 39 of file BalanceTree.java.

39  {
40  super();
41  currencyFormatter = CompanyWrapper.getCurrencyFormatter();
42  addColumns();
43  addChildrenSpace();
44  }
Here is the call graph for this function:

Member Function Documentation

◆ afterCompose()

void org.turro.financials.register.BalanceTree.afterCompose ( )

Definition at line 102 of file BalanceTree.java.

102  {
103  BalanceTopItem bti = new BalanceTopItem(true);
104  children.appendChild(bti);
105  bti.afterCompose();
106  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ formatCurrency()

String org.turro.financials.register.BalanceTree.formatCurrency ( double  value)

Definition at line 108 of file BalanceTree.java.

108  {
109  return currencyFormatter.format(value);
110  }
Here is the caller graph for this function:

◆ getFilter()

BalanceFilter org.turro.financials.register.BalanceTree.getFilter ( )

Definition at line 46 of file BalanceTree.java.

46  {
47  return filter;
48  }

◆ refreshTree()

void org.turro.financials.register.BalanceTree.refreshTree ( )

Definition at line 54 of file BalanceTree.java.

54  {
55  children.getChildren().clear();
56  afterCompose();
57  }
Here is the call graph for this function:

◆ setFilter()

void org.turro.financials.register.BalanceTree.setFilter ( BalanceFilter  filter)

Definition at line 50 of file BalanceTree.java.

50  {
51  this.filter = filter;
52  }

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