Examples of showStationParameterPanel()


Examples of jmt.gui.jsim.panels.AllStationsParametersPanel.showStationParameterPanel()

    }
    // if it's a routing error show the link panel
    else if ((problemType == ModelChecker.ERROR_PROBLEM) && (problemSubType == ModelChecker.ROUTING_ERROR)) {
      AllStationsParametersPanel temp = (AllStationsParametersPanel) tabbedPane.getComponent(3);
      //set temp to show routing section panel
      temp.showStationParameterPanel(relatedStation, relatedClass, 2);
      tabbedPane.setSelectedIndex(3);
    }
    //if no measure have been defined show the measure panel
    else if ((problemType == ModelChecker.ERROR_PROBLEM) && (problemSubType == ModelChecker.SIMULATION_ERROR)) {
      tabbedPane.setSelectedIndex(4);
View Full Code Here

Examples of jmt.gui.jsim.panels.AllStationsParametersPanel.showStationParameterPanel()

                  + name + ".\nDo you want to edit " + name + " queue strategy?\n\n", "Mixed queue strategy found",
              JOptionPane.WARNING_MESSAGE);
      if (k == 0) {
        AllStationsParametersPanel temp = (AllStationsParametersPanel) tabbedPane.getComponent(3);
        //set the station parameter panel to show the queue section
        temp.showStationParameterPanel(relatedStation, null, 0);
        tabbedPane.setSelectedIndex(3);
      }
    }
    //used only in JMVA conversion
    else if ((problemSubType == ModelChecker.BCMP_FCFS_DIFFERENT_SERVICE_TYPES_WARNING) && (problemType == ModelChecker.WARNING_PROBLEM)) {
View Full Code Here

Examples of jmt.gui.jsim.panels.AllStationsParametersPanel.showStationParameterPanel()

              + " the service strategy is mixed, i.e. both load dependent and independent were found.\nDo you want to edit " + name
              + " service parameters?\n\n", "Mixed service strategies found", JOptionPane.WARNING_MESSAGE);
      if (k == 0) {
        AllStationsParametersPanel temp = (AllStationsParametersPanel) tabbedPane.getComponent(3);
        //set the station parameter panel to show the service section
        temp.showStationParameterPanel(relatedStation, null, 1);
        tabbedPane.setSelectedIndex(3);
      }
    }
    //used only in JMVA conversion
    else if ((problemSubType == ModelChecker.BCMP_FCFS_EXPONENTIAL_WARNING) && (problemType == ModelChecker.WARNING_PROBLEM)) {
View Full Code Here

Examples of jmt.gui.jsim.panels.AllStationsParametersPanel.showStationParameterPanel()

              + " at least one non exponential distribution was found.\nDo you want to edit " + name + " service parameters?\n\n",
          "Non exponential distribution in FCFS server", JOptionPane.WARNING_MESSAGE);
      if (k == 0) {
        AllStationsParametersPanel temp = (AllStationsParametersPanel) tabbedPane.getComponent(3);
        //set the station parameter panel to show the service section
        temp.showStationParameterPanel(relatedStation, null, 1);
        tabbedPane.setSelectedIndex(3);
      }
    }
    //used only in JMVA conversion
    else if ((problemSubType == ModelChecker.BCMP_FCFS_DIFFERENT_SERVICE_TIMES_WARNING) && (problemType == ModelChecker.WARNING_PROBLEM)) {
View Full Code Here

Examples of jmt.gui.jsim.panels.AllStationsParametersPanel.showStationParameterPanel()

              "According to BCMP theorem hypothesis, in a FCFS server all the per class service time mean values\nmust be the same. If the service strategies are load dependent the mean value in each range\nhas to be the same for each class.\nDo you want to edit "
                  + name + " service parameters?\n\n", "Non exponential distribution in FCFS server", JOptionPane.WARNING_MESSAGE);
      if (k == 0) {
        AllStationsParametersPanel temp = (AllStationsParametersPanel) tabbedPane.getComponent(3);
        //set the station parameter panel to show the queue section
        temp.showStationParameterPanel(relatedStation, null, 1);
        tabbedPane.setSelectedIndex(3);
      }
    }
    //used only in JMVA conversion
    else if ((problemType == ModelChecker.WARNING_PROBLEM) && (problemSubType == ModelChecker.BCMP_NON_STATE_INDEPENDENT_ROUTING_WARNING)) {
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.