-
Notifications
You must be signed in to change notification settings - Fork 0
/
Natacao.java
84 lines (72 loc) · 1.72 KB
/
Natacao.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
/**
* Write a description of class Natação here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Natacao extends Actividade
{
//Variáveis de Instância
private String tipo;
private double distancia;
//Construtores
public Natacao()
{
super();
this.tipo = "";
this.distancia = 0.0;
}
public Natacao(String t, double d)
{
this.tipo = t;
this.distancia = d;
}
public Natacao(String cm, double c, double rc, String l, long dur, String data, String t, double d)
{
super(cm,c,rc,l,dur,data,"Natação");
this.tipo = t;
this.distancia = d;
}
public Natacao(Actividade a,String t, double d)
{
super(a);
this.tipo = t;
this.distancia = d;
}
//Métodos de Instância
public double getDistancia()
{
return this.distancia;
}
public String getTipo()
{
return this.tipo;
}
public void setDistancia(double d)
{
this.distancia = d;
}
public void setTipo(String t)
{
this.tipo = t;
}
//ToString, Equals e Clone
public String toString()
{
StringBuilder s = new StringBuilder(".....");
s.append(super.toString());
return s.toString();
}
public boolean equals(Object o)
{
if(this == o) return true;
if((o==null || o.getClass()!=this.getClass()))
return false;
Natacao c = (Natacao) o;
return(super.equals(o) && (c.getDistancia() == this.distancia) && (c.getTipo() == this.tipo));
}
public Natacao clone()
{
return new Natacao(super.clone(), this.tipo, this.distancia);
}
}