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

Public Member Functions

MonthItem getMonth (int year, int month)
 

Detailed Description

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

Definition at line 27 of file MonthItemSet.java.

Member Function Documentation

◆ getMonth()

MonthItem org.turro.financials.operating.MonthItemSet.getMonth ( int  year,
int  month 
)

Definition at line 29 of file MonthItemSet.java.

29  {
30  MonthItem mi = ceiling(new MonthItem(year, month));
31  if(mi != null && mi.getYear() == year && mi.getMonth() == month) {
32  return mi;
33  } else {
34  mi = new MonthItem(year, month);
35  add(mi);
36  return mi;
37  }
38  }
Here is the call graph for this function:
Here is the caller graph for this function:

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