fix compilation problem

git-svn-id: https://osmand.googlecode.com/svn/trunk@820 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
This commit is contained in:
Olga.shcherb 2010-12-14 19:38:47 +00:00
parent 73e789d0f2
commit ef3c2f38c2

View file

@ -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;