-
Notifications
You must be signed in to change notification settings - Fork 0
/
MeioDePgto.java
39 lines (33 loc) · 1.14 KB
/
MeioDePgto.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
public class MeioDePgto {
private static final int NMAX_PARCELAS = 3;
private int numParcelas;
private String nomePagamento;
private double taxaCartao;
public void setMeioDePgto(int numParcelas, String nomePagamento, double taxaCartao) {
this.numParcelas = numParcelas;
this.nomePagamento = nomePagamento;
this.taxaCartao = taxaCartao;
}
public void setNumParcelas(int numParcelas) {
this.numParcelas = numParcelas;
}
public boolean validarNumParcelas(){
if(this.numParcelas <= NMAX_PARCELAS){
return true;
}
else{
return false;
}
}
public void setNomePagamento(String nomePagamento) {
this.nomePagamento = nomePagamento;
}
public void setTaxaCartao(double taxaCartao) {
this.taxaCartao = taxaCartao;
}
public void imprimirDadosPagamento() {
System.out.println("Nome do pagamento: " + this.nomePagamento);
System.out.println("Número de parcelas: " + this.numParcelas);
System.out.println("Taxa do cartão: " + this.taxaCartao);
}
}