Package de.scoopgmbh.copper.monitoring.client.util

Examples of de.scoopgmbh.copper.monitoring.client.util.WorkflowVersion


      @Override
      public void changed(ObservableValue<? extends TreeItem<DisplayWorkflowClassesModel>> observable,
          TreeItem<DisplayWorkflowClassesModel> oldValue, TreeItem<DisplayWorkflowClassesModel> newValue) {
       
        if (observable != null && newValue!=null && newValue.getValue()!=null /*&& newValue.getChildren().isEmpty()*/){
          WorkflowVersion workflowClassesModel = newValue.getValue().value;
          selectedItem.set(workflowClassesModel);
          expand(newValue);
        }
       
      }
View Full Code Here


    } catch (RemoteException e) {
      throw new RuntimeException(e);
    }
    ArrayList<WorkflowVersion> result = new ArrayList<WorkflowVersion>();
    for (WorkflowClassMetaData workflowClassesInfo: list){
      result.add(new WorkflowVersion(workflowClassesInfo));
    }
    return result;
  }
View Full Code Here

  public final SimpleStringProperty totalcount;
  public final WorkflowStateSummary workflowStateSummery;

  public WorkflowSummaryResultModel(WorkflowSummary workflowSummery) {
    this.totalcount = new SimpleStringProperty(""+workflowSummery.getTotalcount());
    this.version = new WorkflowVersion(workflowSummery.getClassDescription());
    this.workflowStateSummery = workflowSummery.getStateSummary();
   
  }
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.client.util.WorkflowVersion

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.