public MapElementSize getHeight() {
return height;
}
public void setHeight(MapElementSize height) {
MapElementSize oldValue = this.height;
if (notifyRemote(PROP_HEIGHT_PROPERTY, oldValue, height)) {
this.height = height;
notifyLocal(PROP_HEIGHT_PROPERTY, oldValue, height);
}
}