Examples of NetInfo


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

  /**
   *
   * @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

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

  /**
   *
   * @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

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

  /**
   *
   * @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

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

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

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

  /**
   *
   * @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

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

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

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

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

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

  /**
   *
   * @return node containing information about liveness of the petri net
   */
  protected static DefaultMutableTreeNode getLivenessInfo() {
    return new NetInfo(Messages.getString(prefix + "LivenessAnalysis"));
  }
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.