Package org.nodeclipse.jjs.launch

Source Code of org.nodeclipse.jjs.launch.LaunchConfigurationTabGroup

package org.nodeclipse.jjs.launch;

import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.nodeclipse.debug.launch.LaunchConfigurationEnvironmentTab;


/**
* Using "Run"-->"Run Configurations"--> "New Configuration"-- > "Run" will lead
* here.
* @author Paul Verest
**/
public class LaunchConfigurationTabGroup extends AbstractLaunchConfigurationTabGroup {

    @Override
    public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
        ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
//            new LaunchConfigurationMainTab(),
//            new NodeArgumentsTab(),
            new LaunchConfigurationEnvironmentTab(),
            new CommonTab()
        };
        setTabs(tabs);
    }
}
TOP

Related Classes of org.nodeclipse.jjs.launch.LaunchConfigurationTabGroup

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.