From ec6e6b4dc84fb7d60978c39e77d515ed9e6a381e Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 14 Jul 2008 19:47:08 +0000 Subject: [PATCH] Bug 240525 New MI context to represent thread-groups --- .../service/IMIExecutionGroupDMContext.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/IMIExecutionGroupDMContext.java diff --git a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/IMIExecutionGroupDMContext.java b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/IMIExecutionGroupDMContext.java new file mode 100644 index 00000000000..5e70be36864 --- /dev/null +++ b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/IMIExecutionGroupDMContext.java @@ -0,0 +1,25 @@ +/******************************************************************************* + * Copyright (c) 2008 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.dd.mi.service; + +import org.eclipse.dd.dsf.debug.service.IRunControl.IContainerDMContext; + +/** + * An execution group context object. In the GDB/MI protocol, thread groups + * are represented by a string identifier, which is the basis for this context. + */ +public interface IMIExecutionGroupDMContext extends IContainerDMContext +{ + /** + * Returns the GDB/MI thread group identifier of this context. + */ + public String getGroupId(); +}