Package de.innovationgate.eclipse.wgadesigner.natures

Examples of de.innovationgate.eclipse.wgadesigner.natures.WGARuntime


  }

  public void selectionChanged(IAction action, ISelection selection) {
    _wgaRuntime = WGARuntime.fromSelection(selection);

    WGARuntime current = TomcatUtils.getInstance().getCurrentRuntime();
    boolean instanceRunning = TomcatUtils.getInstance().isRunning();   

    if (_wgaRuntime != null) {
      if (instanceRunning && current != null && _wgaRuntime.getProject().getName().equals(current.getProject().getName())) {
        action.setEnabled(false);
      } else {
        action.setEnabled(true);
      }
View Full Code Here

TOP

Related Classes of de.innovationgate.eclipse.wgadesigner.natures.WGARuntime

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.