plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/wrttools/debug/ui/launch/WidgetLaunchConfigurationTabGroup.java
changeset 471 06589bf52fa7
parent 470 d4809db37847
child 472 bd9f2d7c64a6
equal deleted inserted replaced
470:d4809db37847 471:06589bf52fa7
     1 /*******************************************************************************
       
     2  * Copyright (c) 2009 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  *******************************************************************************/
       
    19 package org.symbian.tools.wrttools.debug.ui.launch;
       
    20 
       
    21 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
       
    22 import org.eclipse.debug.ui.CommonTab;
       
    23 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
       
    24 import org.eclipse.debug.ui.ILaunchConfigurationTab;
       
    25 
       
    26 public class WidgetLaunchConfigurationTabGroup extends
       
    27 		AbstractLaunchConfigurationTabGroup {
       
    28 
       
    29 	public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
       
    30 		setTabs(new ILaunchConfigurationTab[] {new WidgetBasicTab(), new CommonTab()});
       
    31 	}
       
    32 
       
    33 }