-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPerson.java
82 lines (57 loc) · 1.41 KB
/
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
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
/**
* --Copyright notice--
*
* Copyright (c) School of Geography, University of Leeds.
* http://www.geog.leeds.ac.uk/
* This software is licensed under 'The Artistic License' which can be found at
* the Open Source Initiative website at...
* http://www.opensource.org/licenses/artistic-license.php
* Please note that the optional Clause 8 does not apply to this code.
*
* The Standard Version source code, and associated documentation can be found at...
* [online] http://mass.leeds.ac.uk/
*
*
* --End of Copyright notice--
*
*/
/**
* A class to encapsulate a person.<P>
* Currently people have a id and a value.
* @author <A href="http://www.geog.leeds.ac.uk/people/a.evans/">Andy Evans</A>
* @version 1.0
*/
public class Person {
private String id = ""; // The person's id.
private int value = 0;
/**
* Creates a new Person.
*/
public Person() {
}
/**
* Sets the person's ID.
**/
public void setID (String i) {
id = i;
}
/**
* Sets the person's value.
**/
public void setValue (int val) {
value = val;
}
/**
* Gets the person's ID.
**/
public String getID () {
return id;
}
/**
* Gets the person's value.
**/
public int getValue () {
return value;
}
// End of class.
}