1 package net.sf.layoutParser.mock;
2
3 import java.util.Date;
4
5 import net.sf.layoutParser.util.annotation.ParsableBean;
6
7
8
9
10
11
12
13
14 @ParsableBean
15 public class Mock2{
16
17 private static final long serialVersionUID = 7879561323245316049L;
18
19 private Integer numeroParcela;
20 private Date dataVencimento;
21 private Date dataEmissao;
22 private Date quantidadeDeDias;
23 private Double valorPrincipal;
24 private Double iofTradicional;
25 private Double fluxoCaixa;
26 private Double juros;
27 private Double amortizacao;
28 private Double saldoDevedor;
29
30
31
32
33
34
35
36
37 public Integer getNumeroParcela() {
38 return numeroParcela;
39 }
40
41
42
43
44
45
46
47 public void setNumeroParcela(Integer numeroParcela) {
48 this.numeroParcela = numeroParcela;
49 }
50
51
52
53
54
55 public Date getDataVencimento() {
56 return dataVencimento;
57 }
58
59
60
61
62 public void setDataVencimento(Date dataVencimento) {
63 this.dataVencimento = dataVencimento;
64 }
65
66
67
68
69 public Double getValorPrincipal() {
70 return valorPrincipal;
71 }
72
73
74
75
76 public void setValorPrincipal(Double valor) {
77 this.valorPrincipal = valor;
78 }
79
80
81
82
83
84
85
86 public Date getDataEmissao() {
87 return dataEmissao;
88 }
89
90
91
92
93
94
95
96 public void setDataEmissao(Date emissao) {
97 this.dataEmissao = emissao;
98 }
99
100
101
102
103
104
105
106 public Date getQuantidadeDeDias() {
107 return quantidadeDeDias;
108 }
109
110
111
112
113
114
115
116 public void setQuantidadeDeDias(Date quantidadeDeDias) {
117 this.quantidadeDeDias = quantidadeDeDias;
118 }
119
120
121
122
123
124
125
126 public Double getIofTradicional() {
127 return iofTradicional;
128 }
129
130
131
132
133
134
135
136 public void setIofTradicional(Double iofTradicional) {
137 this.iofTradicional = iofTradicional;
138 }
139
140
141
142
143
144
145
146 public Double getFluxoCaixa() {
147 return fluxoCaixa;
148 }
149
150
151
152
153
154
155
156 public void setFluxoCaixa(Double fluxoCaixa) {
157 this.fluxoCaixa = fluxoCaixa;
158 }
159
160
161
162
163
164
165
166 public Double getJuros() {
167 return juros;
168 }
169
170
171
172
173
174
175
176 public void setJuros(Double juros) {
177 this.juros = juros;
178 }
179
180
181
182
183
184
185
186 public Double getAmortizacao() {
187 return amortizacao;
188 }
189
190
191
192
193
194
195
196 public void setAmortizacao(Double amortizacao) {
197 this.amortizacao = amortizacao;
198 }
199
200
201
202
203
204
205
206 public Double getSaldoDevedor() {
207 return saldoDevedor;
208 }
209
210
211
212
213
214
215
216 public void setSaldoDevedor(Double saldoDevedor) {
217 this.saldoDevedor = saldoDevedor;
218 }
219 }