1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

remove the set*() methods not needed.

This commit is contained in:
Alain Magloire 2002-08-09 18:05:31 +00:00
parent 3ea6d4fd2a
commit 369b1b1f4f

View file

@ -21,13 +21,6 @@ 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.
*
@ -35,10 +28,4 @@ public interface ICCondition
*/
int getIgnoreCount();
/**
* Sets the ignore count of this condition.
*
* @param ignoreCount - a number to set
*/
void setIgnoreCount( int ignoreCount );
}