Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2002-08-09 18:05:31 +0000
committerAlain Magloire2002-08-09 18:05:31 +0000
commit369b1b1f4faa01104eae88d512adce527295e8e6 (patch)
treef5d648503af73598c86575d7cdb403bbd2d00cd5
parent3ea6d4fd2a9b9e852b64bc8f6b39f76a1bba8a29 (diff)
downloadorg.eclipse.cdt-369b1b1f4faa01104eae88d512adce527295e8e6.tar.gz
org.eclipse.cdt-369b1b1f4faa01104eae88d512adce527295e8e6.tar.xz
org.eclipse.cdt-369b1b1f4faa01104eae88d512adce527295e8e6.zip
remove the set*() methods not needed.
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java
index 4a10d83839a..952cd8d277b 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICCondition.java
@@ -22,23 +22,10 @@ public interface ICCondition
String getExpression();
/**
- * Sets the condition's expression.
- *
- * @param expression - an expression to set
- */
- void setExpression( String expression );
-
- /**
* Returns the ignore count of this condition.
*
* @return the ignore count of this condition
*/
int getIgnoreCount();
- /**
- * Sets the ignore count of this condition.
- *
- * @param ignoreCount - a number to set
- */
- void setIgnoreCount( int ignoreCount );
}

Back to the top