Examples of checkForServiceTimesParametricSimulationAvaibleClasses()


Examples of jmt.gui.common.definitions.parametric.ParametricAnalysisChecker.checkForServiceTimesParametricSimulationAvaibleClasses()

      to.setToolTipText("Sets the final service time mean value expressed in seconds");
      stepsLabel = new JLabel("Steps (n. of exec.): ");
      steps = new JSpinner(new SpinnerNumberModel(STPA.getNumberOfSteps(), 2, ParametricAnalysis.MAX_STEP_NUMBER, 1));
      steps.setToolTipText("Sets the number of steps to be performed");
      //get the vector containing the keys of the class that can be used to do this type of parametric analysis
      Vector<Object> validC = checker.checkForServiceTimesParametricSimulationAvaibleClasses(STPA.getReferenceStation());
      String[] classeNames = new String[validC.size()];
      for (int i = 0; i < validC.size(); i++) {
        classeNames[i] = cd.getClassName(validC.get(i));
      }
      classChooser.removeAllItems();
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.