Package org.databene.jdbacl.model

Examples of org.databene.jdbacl.model.DBPackage


    for (int row = 0; row < rowCount; row++) {
      out.println("<tr>");
      for (int column = 0; column < columns; column++) {
        int index = column * rowCount + row;
        if (index < sortedPackages.size()) {
          DBPackage pkg = sortedPackages.get(index);
          out.println("<td>");
          printPackage(pkg, out);
          out.println("</td>");
        }
      }
View Full Code Here


  }
 
  public void exportPackageChange(PackageChange packageChange) throws IOException {
    FilePrintWriter out = null;
    try {
      DBPackage oldPackage = packageChange.getOldPackage();
      DBPackage newPackage = packageChange.getNewPackage();
      File htmlFile = packageFile(oldPackage);
      FileUtil.ensureDirectoryExists(htmlFile.getParentFile());
      File cssFile = context.reportFile("mad4db.css");
      out = HtmlReportUtil.createFile(htmlFile, "Modified Package " + oldPackage.getName(), Encodings.UTF_8, cssFile);
      context.printNavBarFor(packageFile(newPackage), out);
View Full Code Here

TOP

Related Classes of org.databene.jdbacl.model.DBPackage

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.