Package org.woped.qualanalysis.sidebar.expert.components

Examples of org.woped.qualanalysis.sidebar.expert.components.NetInfo


  private IEditor parentEditor = null;
 
    public GraphTreeModel(IEditor currentEditor)
    {
      super(new NetInfo(currentEditor.getGraph().getModel().toString()));
      parentEditor = currentEditor;
      PopulateNode((NetInfo)getRoot(),
          parentEditor.getModelProcessor().getElementContainer());
      reload();
    }
View Full Code Here


  /**
   *
   * @return node containing tree title
   */
  protected static DefaultMutableTreeNode getAnalysisInfo() {
    return new NetInfo(Messages.getString(prefix + "Title"));
  }
View Full Code Here

  /**
   *
   * @return node containing all information from structural analysis of the petri net
   */
  protected static DefaultMutableTreeNode getStructuralInfo() {
    return new NetInfo(Messages.getString(prefix + "StructuralAnalysis"));
  }
View Full Code Here

  /**
   *
   * @return node containing all basic information about the petri net
   */
  protected static DefaultMutableTreeNode getNetStatisticsInfo() {
    return new NetInfo(Messages.getString(prefix + "NetStatistics"));
  }
View Full Code Here

  /**
   *
   * @return node containing information about arcs
   */
  protected static DefaultMutableTreeNode getArcsInfo(IQualanalysisService qualanService) {
    return new NetInfo(Messages.getString(prefix + "NumArcs") + ": " + qualanService.getNumArcs());
  }
View Full Code Here

  /**
   *
   * @return node containing information about sComponents in the petri net
   */
  protected static DefaultMutableTreeNode getSComponentInfo() {
    return new NetInfo(Messages.getString(prefix + "SComponentAnalysis"));
  }
View Full Code Here

  /**
   *
   * @return node containing information about the wellStructuredness of the net
   */
  protected static DefaultMutableTreeNode getWellStructurednessInfo() {
    return new NetInfo(Messages.getString(prefix + "WellStructurednessAnalysis"));
  }
View Full Code Here

  /**
   *
   * @return node containing information about soundness
   */
  protected static DefaultMutableTreeNode getSoundnessInfo() {
    return new NetInfo(Messages.getString(prefix + "SoundnessAnalysis"));
  }
View Full Code Here

  /**
   *
   * @return node containing information about the workflow-property of the petri net
   */
  protected static DefaultMutableTreeNode getWorkflowInfo(IQualanalysisService qualanService) {
    return new NetInfo(Messages.getString(prefix + "WorkflowAnalysis"));
  }
View Full Code Here

  /**
   *
   * @return node containing information about the initial marking
   */
  protected static DefaultMutableTreeNode getInitialMarkingInfo() {
    return new NetInfo(Messages.getString(prefix + "InitialMarkingAnalysis"));
  }
View Full Code Here

TOP

Related Classes of org.woped.qualanalysis.sidebar.expert.components.NetInfo

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.