-
Notifications
You must be signed in to change notification settings - Fork 0
/
Futebol.java
83 lines (72 loc) · 1.71 KB
/
Futebol.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
/**
* Write a description of class Futebol here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Futebol extends Actividade
{
//Variáveis de Instância
private int golos;
private double distancia;
//Construtores
public Futebol()
{
super();
this.distancia = 0.0;
this.golos = 0;
}
public Futebol(double d, int c)
{
this.distancia = d;
this.golos = c;
}
public Futebol(String cm, double c, double rc, String l, long dur, String data, double d, int x)
{
super(cm,c,rc,l,dur,data,"Futebol");
this.distancia = d;
this.golos = x;
}
public Futebol(Actividade a,double d, int c)
{
super(a);
this.distancia = d;
this.golos = c;
}
//Métodos de Instância
public double getDistancia()
{
return this.distancia;
}
public int getGolos()
{
return this.golos;
}
public void setDistancia(double d)
{
this.distancia = d;
}
public void setGolos(int c)
{
this.golos = c;
}
//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;
Futebol c = (Futebol) o;
return(super.equals(o) && (c.getDistancia() == this.distancia) && (c.getGolos() == this.golos));
}
public Futebol clone()
{
return new Futebol(super.clone(), this.distancia, this.golos);
}
}