Package xvrengine.launching

Source Code of xvrengine.launching.XVRTabGroup

package xvrengine.launching;

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.eclipse.debug.ui.sourcelookup.SourceLookupTab;

public class XVRTabGroup extends AbstractLaunchConfigurationTabGroup {

  public XVRTabGroup() {
    // TODO Auto-generated constructor stub
  }

  @Override
  public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    // TODO Auto-generated method stub
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {new XVRMainTab(), new SourceLookupTab(), new CommonTab()};
    setTabs(tabs);
  }

}
TOP

Related Classes of xvrengine.launching.XVRTabGroup

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.