Package org.pushingpixels.flamingo.api.common

Examples of org.pushingpixels.flamingo.api.common.JCommandButton$PopupHandler


  }

  private JCommandButton getSemanticalAnalysisButton() {
   
    if (semanticalAnalysisButton == null) {
      semanticalAnalysisButton = new JCommandButton(Messages.getString("Tools.semanticalAnalysis.text"), new analyze_semanticalanalysis());
      semanticalAnalysisButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_WOPED, AbstractViewEvent.ANALYSIS_WOPED, semanticalAnalysisButton));
      setTooltip(semanticalAnalysisButton, "Tools.semanticalAnalysis");
    }
   
    return semanticalAnalysisButton;
View Full Code Here


  }

  private JCommandButton getCapacityPlanningButton() {
   
    if (capacityPlanningButton == null) {
      capacityPlanningButton = new JCommandButton(Messages.getString("Tools.capacityPlanning.text"), new analyze_capacityplanning());
      capacityPlanningButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_QUANTCAP, AbstractViewEvent.QUANTCAP, capacityPlanningButton));
      setTooltip(capacityPlanningButton, "Tools.capacityPlanning");
    }
   
    return capacityPlanningButton;
View Full Code Here

  }

  private JCommandButton getQuantitativeSimulationButton() {
   
    if (quantitativeSimulationButton == null) {
      quantitativeSimulationButton = new JCommandButton(Messages.getString("Tools.quantitativeSimulation.text"),new analyze_quantitative_simulation());
      quantitativeSimulationButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_QUANTSIM, AbstractViewEvent.QUANTSIM, quantitativeSimulationButton));
      setTooltip(quantitativeSimulationButton, "Tools.quantitativeSimulation");
    }
   
    return quantitativeSimulationButton;
View Full Code Here

  }

  private JCommandButton getProcessMetricsButton() {
   
    if (processMetricsButton == null) {
      processMetricsButton = new JCommandButton(Messages.getString("Metrics.processmetrics.text"), new analyze_metric());
      processMetricsButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_METRIC, AbstractViewEvent.ANALYSIS_METRIC, processMetricsButton));
      setTooltip(processMetricsButton, "Metrics.processmetrics");
    }
   
    return processMetricsButton;
View Full Code Here

  }

  private JCommandButton getProcessMassAnalyzeButton() {
   
    if (processMassAnalyzeButton == null) {
      processMassAnalyzeButton = new JCommandButton(Messages.getString("Metrics.processmetricsmassanalysis.text"), new analyze_metric_mass_import());
      processMassAnalyzeButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_MASSMETRICANALYSE, AbstractViewEvent.ANALYSIS_MASSMETRICANALYSE, processMassAnalyzeButton));
      setTooltip(processMassAnalyzeButton, "Metrics.processmetricsmassanalysis");
    }
   
    return processMassAnalyzeButton;
View Full Code Here

  }

  private JCommandButton getProcessMetricsBuilderButton() {
   
    if (processMetricsBuilderButton == null) {
      processMetricsBuilderButton = new JCommandButton(Messages.getString("Metrics.processmetricsbuilder.text"), new analyze_metric_builder());
      processMetricsBuilderButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_METRICSBUILDER, AbstractViewEvent.ANALYSIS_METRICSBUILDER, processMetricsBuilderButton));
      setTooltip(processMetricsBuilderButton, "Metrics.processmetricsbuilder");
    }
   
    return processMetricsBuilderButton;
View Full Code Here

  }

  private JCommandButton getChangeOrientationButton() {
   
    if (changeOrientationButton == null) {
      changeOrientationButton = new JCommandButton(Messages.getString("View.changeModellingDirection.text"),new view_change_modelling_direction());
      changeOrientationButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_ROTATEVIEW, AbstractViewEvent.ROTATEVIEW, changeOrientationButton));
      setTooltip(changeOrientationButton, "View.changeModellingDirection");
    }
   
    return changeOrientationButton;
View Full Code Here

  }

  private JCommandButton getOptimizeLayoutButton() {
   
    if (optimizeLayoutButton == null) {
      optimizeLayoutButton = new JCommandButton(Messages.getString("View.optimizeLayout.text"),new view_optimize_layout());
      optimizeLayoutButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_GRAPHBEAUTIFIER_DEFAULT, AbstractViewEvent.GRAPHBEAUTIFIER, optimizeLayoutButton));
      setTooltip(optimizeLayoutButton, "View.optimizeLayout");
    }
   
    return optimizeLayoutButton;
View Full Code Here

  }

  private JCommandButton getArrangeButton() {
   
    if (arrangeButton == null) {
      arrangeButton = new JCommandButton(Messages.getString("WindowPreferences.arrange.text"), new window_arrange());
      arrangeButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_ARRANGE, AbstractViewEvent.ARRANGE, arrangeButton));
      setTooltip(arrangeButton, "WindowPreferences.arrange");
    }
   
    return arrangeButton;
View Full Code Here

  }

  private JCommandButton getCascadeButton() {
   
    if (cascadeButton == null) {
      cascadeButton = new JCommandButton(Messages.getString("WindowPreferences.cascade.text"), new window_cascadewindows());
      cascadeButton.addActionListener(new ActionButtonListener(m_mediator,ActionFactory.ACTIONID_CASCADE, AbstractViewEvent.CASCADE, cascadeButton));
      setTooltip(cascadeButton, "WindowPreferences.arrange");
    }
   
    return cascadeButton;
View Full Code Here

TOP

Related Classes of org.pushingpixels.flamingo.api.common.JCommandButton$PopupHandler

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.