Package jmt.framework.gui.graph

Examples of jmt.framework.gui.graph.FastGraph$SimTimeComparator


      // Sets a minimal size for text area panel
      pivotPanel2.setMinimumSize(new Dimension(320, 150));
      pivotPanel2.setPreferredSize(new Dimension(360, 150));

      // Adds graph
      graph = new FastGraph(values, md.getPollingInterval());
      graphPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
          pivotPanel2, graph);
      graphPanel.setOneTouchExpandable(true);
      graphPanel.setDividerLocation(360);
      graph.setMinimumSize(new Dimension(200, 150));
View Full Code Here


        @Override
        public void mouseClicked(MouseEvent e) {
          if (e.getClickCount() == 2) {
            if (popupFrame == null) {
              popupFrame = new JFrame();
              popupGraph = new FastGraph(values, md.getPollingInterval());
              popupFrame.getContentPane().add(popupGraph);
              popupFrame.setTitle(md.getName(measureIndex));
              popupFrame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              int width = 640, height = 480;
              Dimension scrDim = Toolkit.getDefaultToolkit().getScreenSize();
View Full Code Here

TOP

Related Classes of jmt.framework.gui.graph.FastGraph$SimTimeComparator

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.