-
Notifications
You must be signed in to change notification settings - Fork 1
/
Person.java
54 lines (47 loc) · 935 Bytes
/
Person.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
/**
* An abstract class that implements Locatable.
* @author Eylul Badem
* @version 08.03.2021
*/
public abstract class Person implements Locatable
{
// properties
String name;
int posX;
int posY;
// constructor
public Person( String name, int x, int y)
{
this.name = name;
this.posX = x;
this.posY = y;
}
public Person( String name )
{
this.name = name;
this.posX = 0;
this.posY = 0;
}
// methods
public String getName()
{
return name;
}
public void setName( String newName )
{
this.name = newName;
}
public int getX()
{
return posX;
}
public int getY()
{
return posY;
}
public void setPos( int x, int y)
{
this.posX = x;
this.posY = y;
}
}