BrightSide Workbench Full Report + Source Code
org.turro.financials.account.logic.BankLabel Class Reference
Inheritance diagram for org.turro.financials.account.logic.BankLabel:
Collaboration diagram for org.turro.financials.account.logic.BankLabel:

Public Member Functions

 BankLabel (StatementEntry se)
 
void onEvent (Event event) throws Exception
 

Detailed Description

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

Definition at line 33 of file BankLabel.java.

Constructor & Destructor Documentation

◆ BankLabel()

org.turro.financials.account.logic.BankLabel.BankLabel ( StatementEntry  se)

Definition at line 37 of file BankLabel.java.

37  {
38  super(se.getDescription());
39  this.se = se;
40  addEventListener(Events.ON_CLICK, this);
41  }
Here is the call graph for this function:

Member Function Documentation

◆ onEvent()

void org.turro.financials.account.logic.BankLabel.onEvent ( Event  event) throws Exception

Definition at line 44 of file BankLabel.java.

44  {
45  QuickDocument w = new QuickDocument(se.getDate(), Math.abs(se.getDebit() - se.getCredit()), se.getDescription());
46  w.setPage(getPage());
47  w.afterCompose();
48  Framework.getCurrent().showModal(I_.get("New document"), w, null);
49  }
Here is the call graph for this function:

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