blob: 3f4db1e58b6941209f762a35dba54ab74e39eea3 (
plain)
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
|
package bjc.dicelang.scl.tokens;
import bjc.funcdata.ListEx;
/**
* Represents a list of words.
*
* @author student
*
*/
public abstract class WordListSCLToken extends SCLToken {
/**
* The list of words.
*/
public ListEx<SCLToken> tokenVals;
/**
* Create a new word-list token.
*
* @param isArray
* Is this token an array.
* @param tokens
* The tokens in the array.
*/
protected WordListSCLToken(boolean isArray, ListEx<SCLToken> tokens) {
if (isArray) {
type = TokenType.ARRAY;
} else {
type = TokenType.WORDS;
}
tokenVals = tokens;
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((tokenVals == null) ? 0 : tokenVals.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
WordListSCLToken other = (WordListSCLToken) obj;
if (tokenVals == null) {
if (other.tokenVals != null)
return false;
} else if (!tokenVals.equals(other.tokenVals))
return false;
return true;
}
@Override
public String toString() {
return "WordsSCLToken [tokenVals=" + tokenVals + "]";
}
}
|