-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTenis.java
executable file
·118 lines (97 loc) · 2.67 KB
/
Tenis.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
111
112
113
114
115
116
117
118
package novo_tp_poo;
/**
* Class Tenis.
*
* @author Grupo22
* @version 1.0
*/
public class Tenis extends Actividade implements Meteorologia, Tempo
{
//instance variables
private String desporto;
private String meteorologia;
private double duracao;
private double calorias;
/**
* Construtores
* 1 - Parametrizado
*/
public Tenis(String desp ,String m, double d)
{
this.desporto = desp;
this.meteorologia = m;
this.duracao = d;
this.calorias = calculaCalorias();
}
/**
* 2 - Copia
*/
public Tenis(Tenis g)
{
this.desporto = g.getDesporto();
this.meteorologia = g.getMeteorologia();
this.duracao = g.getDuracao();
this.calorias = g.getCalorias();
}
/**
* Metodos
* 1 - Gets
*/
public String getDesporto() {return this.desporto;}
public String getMeteorologia() {return this.meteorologia;}
public double getDuracao() {return this.duracao;}
public double getCalorias() {return this.calorias;}
/**
* 2 - Sets
*/
public void setDesporto(String desp) {this.desporto = desp;}
public void setMeteorologia(String m) {this.meteorologia = m;}
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 {
Tenis u = (Tenis) o;
return (this.desporto.equals(u.getDesporto()));
}
}
/**
* 5 - Clone
*/
public Tenis clone()
{
return new Tenis(this);
}
/**
* 6 - toString
*/
public String toString(){
return new String("Desporto: " + this.getDesporto() + ".");
}
/**
* toString mais detalhado
*/
public String toStringD() {
return new String("Desporto: " + this.getDesporto() + "\nMeteo: " + this.getMeteorologia() + "\nDuracao: " + this.getDuracao() + "\nCalorias: " + this.getCalorias());
}
}