-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArtesMarciais.java
executable file
·110 lines (92 loc) · 2.38 KB
/
ArtesMarciais.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package novo_tp_poo;
/**
* Classe ArtesMarciais.
*
* @author Grupo22
* @version 1.0
*/
public class ArtesMarciais extends Actividade implements Tempo
{
// instance variables
private String desporto;
private double duracao;
private double calorias;
/**
* Construtores
* 1 - Parametrizado
*/
public ArtesMarciais(String desp, double d)
{
this.desporto = desp;
this.duracao = d;
this.calorias = calculaCalorias();
}
/**
* 2 - Copia
*/
public ArtesMarciais(ArtesMarciais m)
{
this.desporto = m.getDesporto();
this.duracao = m.getDuracao();
this.calorias = m.getCalorias();
}
/**
* Metodos
* 1 - Gets
*/
public String getDesporto() {return this.desporto;}
public double getDuracao() {return this.duracao;}
public double getCalorias() {return this.calorias;}
/**
* 2 - Sets
*/
public void setDesporto(String desp) {this.desporto = desp;}
public void setDuracao(double d) {this.duracao = d;}
public void setCalorias(double c) {this.calorias = c;}
/**
* 3 - Outros
*/
public double calculaCalorias() {
this.calorias = 0.075 * this.duracao /*** (Peso)*/;
return this.calorias;
}
public String minToHoras(){
int hora = 0, min = 0;
hora = (int)this.duracao/60;
min = (int)this.duracao % 60;
return String.format("%d:%dh", hora, min);
}
/**
* 4 - Equals
*/
public boolean equals (Object o) {
if(this == o) {
return true;
}
if((o == null) || (this.getClass() != o.getClass())) {
return false;
} else {
ArtesMarciais u = (ArtesMarciais) o;
return (this.desporto.equals(u.getDesporto()));
}
}
/**
* 5 - Clone
*/
public ArtesMarciais clone()
{
return new ArtesMarciais(this);
}
/**
* 6 - toString
*/
public String toString() {
return new String ("Desporto: " + this.getDesporto() + ".");
}
/**
* toString mais detalhado
*/
public String toStringD() {
return new String("Desporto: " + this.getDesporto() + "\nDuracao: " + this.getDuracao() + "\nCalorias: " + this.getCalorias());
}
}