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

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


   }


   public ConstraintDataXmlBean getXmlBean()
   {
      ConstraintDataXmlBean ret = new ConstraintDataXmlBean();
      ret.setPkTableName(_pkTableName);
      ret.setFkTableName(_fkTableName);
      ret.setConstraintName(_constraintName);
      ret.setNonDbConstraint(_nonDbConstraint);
      ret.setShowThisConstraintName(_showThisConstraintName);

      ColumnInfoXmlBean[] colInfoXmlBeans = new ColumnInfoXmlBean[_columnInfos.length];
      for (int i = 0; i < _columnInfos.length; i++)
      {
         colInfoXmlBeans[i] = _columnInfos[i].getXmlBean();
      }
      ret.setColumnInfoXmlBeans(colInfoXmlBeans);

      return ret;
   }
View Full Code Here

TOP

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

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.