fix compilation problem
git-svn-id: https://osmand.googlecode.com/svn/trunk@820 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
This commit is contained in:
parent
73e789d0f2
commit
ef3c2f38c2
1 changed files with 8 additions and 0 deletions
|
@ -11,6 +11,7 @@ public class MultyPolygon extends BinaryMapDataObject {
|
|||
private String[] names = null;
|
||||
private String tag = null;
|
||||
private String value = null;
|
||||
private int layer = 0;
|
||||
public MultyPolygon(){
|
||||
super();
|
||||
id = -1;
|
||||
|
@ -26,6 +27,13 @@ public class MultyPolygon extends BinaryMapDataObject {
|
|||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public int getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
public void setLayer(int layer) {
|
||||
this.layer = layer;
|
||||
}
|
||||
|
||||
public void setNames(String[] names) {
|
||||
this.names = names;
|
||||
|
|
Loading…
Reference in a new issue