Skip to main content
summaryrefslogblamecommitdiffstats
blob: 3589d975ca29f45adfd68b373d06e63ff7e1ba0c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                
                                                







                                                                                 
                                       
 
                                                                         

   


                                                                      
             
   
                                                                   





                                                                  
/*******************************************************************************
 * Copyright (c) 2008, 2009 Ericsson and others.
 * 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:
 *     Ericsson - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.mi.service;

import org.eclipse.cdt.dsf.debug.service.IRunControl.IContainerDMContext;

/**
 * An container context object.  In the GDB/MI protocol, thread groups
 * are used as containers of threads, and are represented by a string 
 * identifier.  These thread groups are the basis for this context.
 * @since 1.1
 */
public interface IMIContainerDMContext extends IContainerDMContext 
{
    /**
     * Returns the GDB/MI thread group identifier of this context.
     */
    public String getGroupId();
}

Back to the top