Examples of FilterJob


Examples of org.eobjects.analyzer.job.FilterJob

    return label.toString();
  }

  private static void appendRequirement(StringBuilder sb, Outcome req) {
    if (req instanceof FilterOutcome) {
      FilterJob filterJob = ((FilterOutcome) req).getFilterJob();
      Enum<?> category = ((FilterOutcome) req).getCategory();

      String filterLabel = LabelUtils.getLabel(filterJob);

      sb.append(filterLabel);
View Full Code Here

Examples of org.eobjects.analyzer.job.FilterJob

          if (currentRequirement != null && currentRequirement instanceof FilterOutcome) {
            FilterOutcome filterOutcome = (FilterOutcome) currentRequirement;
            // put an icon on the currently configured requirement
            try {
              FilterJob filterJob = fjb.toFilterJob();

              if (filterOutcome.getFilterJob().equals(filterJob)) {
                if (filterOutcome.getCategory().equals(fjbDescriptor.getOutcomeCategoryByName(category))) {
                  filterMenuItem.setIcon(mappedFilterIcon);
                  categoryMenuItem.setIcon(mappedFilterIcon);
View Full Code Here

Examples of org.eobjects.analyzer.job.FilterJob

          String filterLabel = LabelUtils.getLabel(fjb);

          setText(filterLabel + ": " + category);
        } else {
          FilterJob filterJob = filterOutcome.getFilterJob();
          setText(LabelUtils.getLabel(filterJob) + ": " + category);
        }
      } else if (requirement instanceof MergedOutcome) {
        MergedOutcomeJob job = ((MergedOutcome) requirement).getMergedOutcomeJob();
        setText(LabelUtils.getLabel(job));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.