2010-05-14 23:05:18 +02:00
|
|
|
package com.osmand.data;
|
|
|
|
|
|
|
|
import com.osmand.osm.Entity;
|
|
|
|
|
|
|
|
public class Building extends MapObject<Entity> {
|
|
|
|
|
2010-05-16 23:49:11 +02:00
|
|
|
private Entity e;
|
2010-05-14 23:05:18 +02:00
|
|
|
|
|
|
|
public Building(Entity e){
|
|
|
|
this.e = e;
|
|
|
|
}
|
2010-05-16 23:49:11 +02:00
|
|
|
|
|
|
|
public Building(){}
|
2010-05-14 23:05:18 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Entity getEntity() {
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|