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

Public Member Functions

 BalanceMajorItem (MajorAccount majorAccount, boolean loadOnDemand)
 
BalanceTree getTree ()
 
void showContents ()
 
void reloadContents ()
 
boolean isLoadOnDemand ()
 
void setLoadOnDemand (boolean loadOnDemand)
 
BalanceMajorItem getParentItem ()
 
void afterCompose ()
 

Detailed Description

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

Definition at line 37 of file BalanceMajorItem.java.

Constructor & Destructor Documentation

◆ BalanceMajorItem()

org.turro.financials.register.BalanceMajorItem.BalanceMajorItem ( MajorAccount  majorAccount,
boolean  loadOnDemand 
)

Definition at line 43 of file BalanceMajorItem.java.

43  {
44  super();
45  this.majorAccount = majorAccount;
46  this.loadOnDemand = loadOnDemand;
47  }

Member Function Documentation

◆ afterCompose()

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

Definition at line 148 of file BalanceMajorItem.java.

148  {
149  initLoadOnDemand();
150  addCells();
151  addChildrenSpace();
152  }

◆ getParentItem()

BalanceMajorItem org.turro.financials.register.BalanceMajorItem.getParentItem ( )

Definition at line 143 of file BalanceMajorItem.java.

143  {
144  return (BalanceMajorItem) getParentItem();
145  }
BalanceMajorItem(MajorAccount majorAccount, boolean loadOnDemand)

◆ getTree()

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

Definition at line 50 of file BalanceMajorItem.java.

50  {
51  return (BalanceTree) super.getTree();
52  }

◆ isLoadOnDemand()

boolean org.turro.financials.register.BalanceMajorItem.isLoadOnDemand ( )

Definition at line 103 of file BalanceMajorItem.java.

103  {
104  return loadOnDemand;
105  }

◆ reloadContents()

void org.turro.financials.register.BalanceMajorItem.reloadContents ( )

Definition at line 59 of file BalanceMajorItem.java.

59  {
60  children.getChildren().clear();
61  showContents();
62  }
Here is the call graph for this function:

◆ setLoadOnDemand()

void org.turro.financials.register.BalanceMajorItem.setLoadOnDemand ( boolean  loadOnDemand)

Definition at line 107 of file BalanceMajorItem.java.

107  {
108  this.loadOnDemand = loadOnDemand;
109  }

◆ showContents()

void org.turro.financials.register.BalanceMajorItem.showContents ( )

Definition at line 54 of file BalanceMajorItem.java.

54  {
55  fillFolder();
56  setOpen(true);
57  }
Here is the caller graph for this function:

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