Package com.projity.configuration

Examples of com.projity.configuration.ReportDefinition


  }

  public void restoreWorkspace(WorkspaceSetting w, int context) {
    Workspace ws = (Workspace)w;
    if (ws.reportName != null) {
      ReportDefinition def = ReportUtil.getFromName(ws.reportName);
      if (def != null)
        reportChoice.setSelectedItem(def);
    }
    if (ws.fieldArrayName != null) {
      SpreadSheetFieldArray s = (SpreadSheetFieldArray) Dictionary.get(reportDefinition.getMainSpreadsheetCategory(),ws.fieldArrayName);
View Full Code Here


  }
 
  public static ReportDefinition getFromName(String name) {
    Object[] defs = getReportDefinitions();
    for (int i =0; i < defs.length; i++) {
      ReportDefinition def = (ReportDefinition)defs[i];
      if (def.getName().equals(name))
        return def;
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.projity.configuration.ReportDefinition

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.