-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTile.java
More file actions
68 lines (62 loc) · 1.33 KB
/
Tile.java
File metadata and controls
68 lines (62 loc) · 1.33 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
import java.util.*;
public class Tile
{
private int value;
private int x;
private int y;
private int localGroup;
private List<Integer> possibilities;
public Tile(int x,int y, int localGroup)
{
this.value = -1;
this.x = x;
this.y = y;
this.localGroup = localGroup;
this.possibilities = new ArrayList<Integer>();
}
public Tile(int value, int x,int y, int localGroup)
{
this.x = x;
this.y = y;
this.localGroup = localGroup;
this.possibilities = new ArrayList<Integer>();
this.value = value;
}
public int getX()
{
return this.x;
}
public int getY()
{
return this.y;
}
public int getLocalGroup()
{
return this.localGroup;
}
public int getValue()
{
return this.value;
}
public void setValue(int value)
{
this.value = value;
}
public void setPossibilities(List<Integer> pos)
{
this.possibilities = pos;
}
public List<Integer> getPossibilities()
{
return this.possibilities;
}
public String toString()
{
String returnString = "";
returnString += "\nrow = " + x;
returnString += "\ncol = " + y;
returnString += "\ngrp = " + localGroup;
returnString += "\npossible = " + possibilities;
return returnString;
}
}