Package com.googlecode.goclipse.ui.launch

Source Code of com.googlecode.goclipse.ui.launch.GoLaunchTabGroup

/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui.launch;

import melnorme.lang.ide.ui.launch.AbstractLangTabGroup;

import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.EnvironmentTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;

public class GoLaunchTabGroup extends AbstractLangTabGroup {
 
  @Override
  public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    setTabs(new ILaunchConfigurationTab[] {
      createMainLaunchConfigTab(),
//      new LangArgumentsTab(),
      new EnvironmentTab(),
      new CommonTab()
    });
  }
 
  @Override
  protected ILaunchConfigurationTab createMainLaunchConfigTab() {
    return new GoLaunchConfigurationTab();
  }
 
}
TOP

Related Classes of com.googlecode.goclipse.ui.launch.GoLaunchTabGroup

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.