Package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans

Examples of net.sourceforge.squirrel_sql.plugins.graph.xmlbeans.TableFrameXmlBean


      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;

   }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.graph.xmlbeans.TableFrameXmlBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.