Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2009-10-14 18:58:19 +0000
committereutarass2009-10-14 18:58:19 +0000
commit7cc57a3e1a109e8bd4ba34a7df922c3eac43bbd7 (patch)
treeccf90bd46cabf059e66ea2c4fa50fc21f42c2f0c /plugins/org.eclipse.tm.tcf.core
parent3cd761e5a1ccbf28c4f4849ccbbff98c4e118078 (diff)
downloadorg.eclipse.tcf-7cc57a3e1a109e8bd4ba34a7df922c3eac43bbd7.tar.gz
org.eclipse.tcf-7cc57a3e1a109e8bd4ba34a7df922c3eac43bbd7.tar.xz
org.eclipse.tcf-7cc57a3e1a109e8bd4ba34a7df922c3eac43bbd7.zip
TCF Agent: Breakpoints service: implemented "StopGroup" breakpoint property
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.core')
-rw-r--r--plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IBreakpoints.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IBreakpoints.java b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IBreakpoints.java
index ae6b94f44..55ea017cd 100644
--- a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IBreakpoints.java
+++ b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/IBreakpoints.java
@@ -118,9 +118,12 @@ public interface IBreakpoints extends IService {
static final String
CAPABILITY_CONTEXT_ID = "ID", // String
CAPABILITY_HAS_CHILDREN = "HasChildren", // Boolean
- CAPABILITY_ADDRESS = "Location", // Boolean
+ CAPABILITY_LOCATION = "Location", // Boolean
CAPABILITY_CONDITION = "Condition", // Boolean
- CAPABILITY_FILE_LINE = "FileLine"; // Boolean
+ CAPABILITY_FILE_LINE = "FileLine", // Boolean
+ CAPABILITY_CONTEXTIDS = "ContextIds", // Boolean
+ CAPABILITY_STOP_GROUP = "StopGroup", // Boolean
+ CAPABILITY_IGNORECOUNT = "IgnoreCount"; // Boolean
/**
* Call back interface for breakpoint service commands.

Back to the top