Package nz.ac.massey.cs.deploymentpuzzlersurvey

Examples of nz.ac.massey.cs.deploymentpuzzlersurvey.Category


    out.println("\\caption{Question Overview}");
    out.println("\\begin{tabular}{ |lllp{0.9cm}| }");
    out.println("\\hline");
    out.println("category & question id & package name & in short survey\\\\");
    out.println("\\hline");
    Category c = null;
    for (TechnicalQuestion q:questions) {
      if (!q.getId().endsWith("-RECP")) {
        Category c2 = q.getCategory();
        if (c!=null && c!=c2) {
          out.println("\t\\hline");
        }
        c = c2;
        out.print("\t");
View Full Code Here

TOP

Related Classes of nz.ac.massey.cs.deploymentpuzzlersurvey.Category

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.