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

Public Member Functions

double getCoefficient ()
 
void setCoefficient (double coefficient)
 
long getId ()
 
void setId (long id)
 
LineType getLineType ()
 
void setLineType (LineType lineType)
 
OperatingModifier getOperatingModifier ()
 
void setOperatingModifier (OperatingModifier operatingModifier)
 
String getPattern ()
 
void setPattern (String pattern)
 
AccountPosition getPosition ()
 
void setPosition (AccountPosition position)
 
LineTypeAccountType getType ()
 
void setType (LineTypeAccountType type)
 
double getTypeValue ()
 
void setTypeValue (double typeValue)
 
RegisterView getView ()
 
void setView (RegisterView view)
 
String getDescription ()
 

Detailed Description

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

Definition at line 33 of file LineTypeAccount.java.

Member Function Documentation

◆ getCoefficient()

double org.turro.financials.entity.LineTypeAccount.getCoefficient ( )

Definition at line 58 of file LineTypeAccount.java.

58  {
59  return coefficient;
60  }

◆ getDescription()

String org.turro.financials.entity.LineTypeAccount.getDescription ( )

Definition at line 132 of file LineTypeAccount.java.

132  {
133  PhraseBuilder pb = new PhraseBuilder();
134  pb.addWord(type.name());
135  pb.addWord(pattern);
136  pb.addWord(position.name());
137  pb.addWord(view.getName());
138  pb.addWord(coefficient + "");
139  return pb.toString();
140  }

◆ getId()

long org.turro.financials.entity.LineTypeAccount.getId ( )

Definition at line 66 of file LineTypeAccount.java.

66  {
67  return id;
68  }

◆ getLineType()

LineType org.turro.financials.entity.LineTypeAccount.getLineType ( )

Definition at line 74 of file LineTypeAccount.java.

74  {
75  return lineType;
76  }
Here is the caller graph for this function:

◆ getOperatingModifier()

OperatingModifier org.turro.financials.entity.LineTypeAccount.getOperatingModifier ( )

Definition at line 82 of file LineTypeAccount.java.

82  {
83  return operatingModifier;
84  }

◆ getPattern()

String org.turro.financials.entity.LineTypeAccount.getPattern ( )

Definition at line 90 of file LineTypeAccount.java.

90  {
91  return pattern;
92  }
Here is the caller graph for this function:

◆ getPosition()

AccountPosition org.turro.financials.entity.LineTypeAccount.getPosition ( )

Definition at line 98 of file LineTypeAccount.java.

98  {
99  return position;
100  }
Here is the caller graph for this function:

◆ getType()

LineTypeAccountType org.turro.financials.entity.LineTypeAccount.getType ( )

Definition at line 106 of file LineTypeAccount.java.

106  {
107  return type;
108  }
Here is the caller graph for this function:

◆ getTypeValue()

double org.turro.financials.entity.LineTypeAccount.getTypeValue ( )

Definition at line 114 of file LineTypeAccount.java.

114  {
115  return typeValue;
116  }

◆ getView()

RegisterView org.turro.financials.entity.LineTypeAccount.getView ( )

Definition at line 122 of file LineTypeAccount.java.

122  {
123  return view;
124  }
Here is the caller graph for this function:

◆ setCoefficient()

void org.turro.financials.entity.LineTypeAccount.setCoefficient ( double  coefficient)

Definition at line 62 of file LineTypeAccount.java.

62  {
63  this.coefficient = coefficient;
64  }
Here is the caller graph for this function:

◆ setId()

void org.turro.financials.entity.LineTypeAccount.setId ( long  id)

Definition at line 70 of file LineTypeAccount.java.

70  {
71  this.id = id;
72  }

◆ setLineType()

void org.turro.financials.entity.LineTypeAccount.setLineType ( LineType  lineType)

Definition at line 78 of file LineTypeAccount.java.

78  {
79  this.lineType = lineType;
80  }
Here is the caller graph for this function:

◆ setOperatingModifier()

void org.turro.financials.entity.LineTypeAccount.setOperatingModifier ( OperatingModifier  operatingModifier)

Definition at line 86 of file LineTypeAccount.java.

86  {
87  this.operatingModifier = operatingModifier;
88  }

◆ setPattern()

void org.turro.financials.entity.LineTypeAccount.setPattern ( String  pattern)

Definition at line 94 of file LineTypeAccount.java.

94  {
95  this.pattern = pattern;
96  }

◆ setPosition()

void org.turro.financials.entity.LineTypeAccount.setPosition ( AccountPosition  position)

Definition at line 102 of file LineTypeAccount.java.

102  {
103  this.position = position;
104  }

◆ setType()

void org.turro.financials.entity.LineTypeAccount.setType ( LineTypeAccountType  type)

Definition at line 110 of file LineTypeAccount.java.

110  {
111  this.type = type;
112  }

◆ setTypeValue()

void org.turro.financials.entity.LineTypeAccount.setTypeValue ( double  typeValue)

Definition at line 118 of file LineTypeAccount.java.

118  {
119  this.typeValue = typeValue;
120  }

◆ setView()

void org.turro.financials.entity.LineTypeAccount.setView ( RegisterView  view)

Definition at line 126 of file LineTypeAccount.java.

126  {
127  this.view = view;
128  }

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