This repository has been archived by the owner on Sep 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocal.java
77 lines (66 loc) · 1.54 KB
/
Local.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
package poop;
import java.io.Serializable;
import java.util.ArrayList;
/**
*
* @author JoaquimFerrer Henrique Ferrer
*/
public abstract class Local implements Serializable{
private static final long serialVersionUID = 1L;
private String coordenadas;
/**
* Unico Construtor
* @param coordenadas Coordenadas do Local
*/
public Local(String coordenadas) {
this.coordenadas = coordenadas;
}
/**
* Obtém as coordenadas do Local.
* @return Coordenadas
*/
public String getCoordenadas() {
return coordenadas;
}
/**
* Obtém o custo duma inscrição neste local.
* @return valor que custa uma inscrição neste local.
*/
public double getCustoMinimo() {
return 0;
}
/**
* Retorna se é um bar.
* @return
*/
public boolean isBar() {
return false;
}
/**
* Retorna se é uma exposição.
* @return
*/
public boolean isExposicao() {
return false;
}
/**
* Retorna os detalhes dum local
* @return Os detalhes.
*/
public abstract String getDetails();
@Override
public boolean equals(Object other){
if (other == null) return false;
if (other == this) return true;
if (!(other instanceof Local))return false;
Local local = (Local)other;
if(local.getCoordenadas().equals(this.coordenadas)) {
return true;
}
return false;
}
@Override
public String toString() {
return "Coordenadas: " + this.coordenadas;
}
}