BrightSide Workbench Full Report + Source Code
org.turro.financials.report.AccountReportPeriod Class Reference

Public Member Functions

 AccountReportPeriod (int year, int month)
 
int getMonth ()
 
void setMonth (int month)
 
AccountReportItem getItem ()
 
void setItem (AccountReportItem item)
 
double getValue ()
 
void setValue (double value)
 
int getYear ()
 
void setYear (int year)
 
boolean equals (Object obj)
 
int hashCode ()
 

Detailed Description

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

Definition at line 24 of file AccountReportPeriod.java.

Constructor & Destructor Documentation

◆ AccountReportPeriod()

org.turro.financials.report.AccountReportPeriod.AccountReportPeriod ( int  year,
int  month 
)

Definition at line 30 of file AccountReportPeriod.java.

30  {
31  this.year = year;
32  this.month = month;
33  }
Here is the caller graph for this function:

Member Function Documentation

◆ equals()

boolean org.turro.financials.report.AccountReportPeriod.equals ( Object  obj)

Definition at line 68 of file AccountReportPeriod.java.

68  {
69  if (obj == null) {
70  return false;
71  }
72  if (getClass() != obj.getClass()) {
73  return false;
74  }
75  final AccountReportPeriod other = (AccountReportPeriod) obj;
76  if (this.year != other.year) {
77  return false;
78  }
79  if (this.month != other.month) {
80  return false;
81  }
82  return true;
83  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getItem()

AccountReportItem org.turro.financials.report.AccountReportPeriod.getItem ( )

Definition at line 43 of file AccountReportPeriod.java.

43  {
44  return item;
45  }

◆ getMonth()

int org.turro.financials.report.AccountReportPeriod.getMonth ( )

Definition at line 35 of file AccountReportPeriod.java.

35  {
36  return month;
37  }
Here is the caller graph for this function:

◆ getValue()

double org.turro.financials.report.AccountReportPeriod.getValue ( )

Definition at line 51 of file AccountReportPeriod.java.

51  {
52  return value;
53  }
Here is the caller graph for this function:

◆ getYear()

int org.turro.financials.report.AccountReportPeriod.getYear ( )

Definition at line 59 of file AccountReportPeriod.java.

59  {
60  return year;
61  }
Here is the caller graph for this function:

◆ hashCode()

int org.turro.financials.report.AccountReportPeriod.hashCode ( )

Definition at line 86 of file AccountReportPeriod.java.

86  {
87  int hash = 7;
88  hash = 17 * hash + this.year;
89  hash = 17 * hash + this.month;
90  return hash;
91  }

◆ setItem()

void org.turro.financials.report.AccountReportPeriod.setItem ( AccountReportItem  item)

Definition at line 47 of file AccountReportPeriod.java.

47  {
48  this.item = item;
49  }
Here is the caller graph for this function:

◆ setMonth()

void org.turro.financials.report.AccountReportPeriod.setMonth ( int  month)

Definition at line 39 of file AccountReportPeriod.java.

39  {
40  this.month = month;
41  }

◆ setValue()

void org.turro.financials.report.AccountReportPeriod.setValue ( double  value)

Definition at line 55 of file AccountReportPeriod.java.

55  {
56  this.value = value;
57  }
Here is the caller graph for this function:

◆ setYear()

void org.turro.financials.report.AccountReportPeriod.setYear ( int  year)

Definition at line 63 of file AccountReportPeriod.java.

63  {
64  this.year = year;
65  }

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