Package com.github.marook.eclipse_remote_control.run.runner.impl.simple.atom

Source Code of com.github.marook.eclipse_remote_control.run.runner.impl.simple.atom.ExternalToolsCommandRunner

/*
* Copyright 2010 Markus Pielmeier
*
* This file is part of eclipse remote control.
*
* eclipse remote control is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* eclipse remote control is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with eclipse remote control.  If not, see <http://www.gnu.org/licenses/>.
*/

package com.github.marook.eclipse_remote_control.run.runner.impl.simple.atom;

import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchManager;

import com.github.marook.eclipse_remote_control.command.command.Command;
import com.github.marook.eclipse_remote_control.command.command.ExternalToolsCommand;

public class ExternalToolsCommandRunner extends AbstractAtomCommandRunner {

  public ExternalToolsCommandRunner() {
    super(ExternalToolsCommand.ID);
  }
 
  @Override
  protected void internalExecute(final Command cmd) throws Exception {
    final ExternalToolsCommand c = (ExternalToolsCommand) cmd;
   
    final ILaunchManager manager = DebugPlugin.getDefault().getLaunchManager();
   
    final String requestedCfgName = c.getConfigurationName();
   
    for(final ILaunchConfiguration cfg : manager.getLaunchConfigurations()){
      final String cfgName = cfg.getName();
     
      if(!requestedCfgName.equals(cfgName)) continue;

      cfg.launch(new RunModeMapper().getRunMode(c.getRunMode()), null);
     
      break;
    }
  }

}
TOP

Related Classes of com.github.marook.eclipse_remote_control.run.runner.impl.simple.atom.ExternalToolsCommandRunner

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.