Package simtools.ui

Examples of simtools.ui.PlotInformationDialog


 
  public boolean doAction(double x, double y, Object o, String action, CompoundEdit undoableEdit) {

    if (action.equals(resources.getStringValue("information"))){
      // Display plot information
      PlotInformationDialog di = new TimePlotStatisticsDialog(this);
      JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
      if (jd!=null) jd.show();
      return true;
   
    } else {
        return super.doAction(x,y,o,action, undoableEdit);
View Full Code Here


            repaintDiagram(getBounds());
            return true;
        }
        if (action.equals(resources.getStringValue("information"))) {

            PlotInformationDialog di = new PlotInformationDialog(this);
            JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
            if (jd!=null) jd.show();
            return true;
        }
        for(int i=0;i<_curves.size();i++){
View Full Code Here

TOP

Related Classes of simtools.ui.PlotInformationDialog

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.