return _myUI.getTitlePane();
}
public TableFrameXmlBean getXmlBean()
{
TableFrameXmlBean ret = new TableFrameXmlBean();
double zoom = _zoomer.getZoom();
Rectangle bounds = getBounds();
ret.setX((int)(bounds.x/zoom + 0.5));
ret.setY((int)(bounds.y/zoom + 0.5));
ret.setWidht((int)(bounds.width/zoom + 0.5));
ret.setHeight((int)(bounds.height/zoom + 0.5));
return ret;
}