-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToken.java
More file actions
93 lines (86 loc) · 1.56 KB
/
Copy pathToken.java
File metadata and controls
93 lines (86 loc) · 1.56 KB
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
85
86
87
88
89
90
91
92
93
package edu.kit.informatik;
/**
* The type Token.
* A token is needed to play the game.
*
* @author John Dederer
* @version 1.0
*/
public class Token {
/**
* The Size attribute.
*/
private String size;
/**
* The Color attribute.
*/
private String color;
/**
* The Shape attribute.
*/
private String shape;
/**
* The Inner attribute.
*/
private String inner;
/**
* The Number.
*/
private int number;
/**
* Constructor for unique token.
*
* @param size the size
* @param color the color
* @param shape the shape
* @param inner the inner attribute
* @param number the number to identify
*/
public Token(String color, String shape, String size, String inner, int number) {
this.size = size;
this.color = color;
this.shape = shape;
this.inner = inner;
this.number = number;
}
/**
* Gets size.
*
* @return the size
*/
public String getSize() {
return size;
}
/**
* Gets color.
*
* @return the color
*/
public String getColor() {
return color;
}
/**
* Gets shape.
*
* @return the shape
*/
public String getShape() {
return shape;
}
/**
* Gets inner.
*
* @return the inner
*/
public String getInner() {
return inner;
}
/**
* Gets number.
*
* @return the number
*/
public int getNumber() {
return number;
}
}