org.chromium.debug.ui/src/org/chromium/debug/ui/launcher/LaunchTabGroup.java
changeset 2 e4420d2515f1
child 355 8726e95bcbba
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.debug.ui.launcher;
       
     6 
       
     7 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
       
     8 import org.eclipse.debug.ui.CommonTab;
       
     9 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
       
    10 import org.eclipse.debug.ui.ILaunchConfigurationTab;
       
    11 
       
    12 /**
       
    13  * The Chromium JavaScript debugger launch configuration tab group.
       
    14  */
       
    15 public class LaunchTabGroup extends AbstractLaunchConfigurationTabGroup {
       
    16   public static class Chromium extends LaunchTabGroup {
       
    17   }
       
    18 
       
    19   public static class StandaloneV8 extends LaunchTabGroup {
       
    20   }
       
    21 
       
    22   public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
       
    23     setTabs(new ILaunchConfigurationTab[] { new ChromiumRemoteTab(), new CommonTab() });
       
    24   }
       
    25 
       
    26 }