-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWord.java
More file actions
47 lines (34 loc) · 949 Bytes
/
Copy pathWord.java
File metadata and controls
47 lines (34 loc) · 949 Bytes
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
package test;
import java.util.Arrays;
import java.util.Objects;
import java.util.Random;
public class Word {
Tile[] tiles;
int col ,row;
boolean vertical;
public Word(Tile[] tiles, int row, int col, boolean vertical) {
this.tiles = tiles;
this.col = col;
this.row = row;
this.vertical = vertical;
}
public Tile[] getTiles() {
return tiles;
}
public int getCol() {
return col;
}
public int getRow() {
return row;
}
public boolean isVertical() {
return vertical;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Word word = (Word) o;
return col == word.col && row == word.row && vertical == word.vertical && Arrays.equals(tiles, word.tiles);
}
}