1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Renamed the 'computeDetail' method of the 'ICValue' interface to 'evaluateAsExpression'.

This commit is contained in:
Mikhail Khodjaiants 2003-06-05 20:44:45 +00:00
parent fc9a1bc154
commit 1a2df38e62
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2003-06-05 Mikhail Khodjaiants
Renamed the 'computeDetail' method of the 'ICValue' interface to 'evaluateAsExpression'.
* ICValue.java
* CArrayPartitionValue.java
* CValue.java
2003-06-05 Mikhail Khodjaiants 2003-06-05 Mikhail Khodjaiants
Removed the redundant methods from the 'ICDIFloatingPointValue' interface. Removed the redundant methods from the 'ICDIFloatingPointValue' interface.
* ICDIFloatingPointValue.java * ICDIFloatingPointValue.java

View file

@ -28,7 +28,7 @@ public interface ICValue extends IValue
*/ */
String getUnderlyingValueString(); String getUnderlyingValueString();
String computeDetail(); String evaluateAsExpression();
void setChanged( boolean changed ) throws DebugException; void setChanged( boolean changed ) throws DebugException;
} }

View file

@ -148,7 +148,7 @@ public class CArrayPartitionValue extends CDebugElement implements ICValue
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.model.ICValue#computeDetail() * @see org.eclipse.cdt.debug.core.model.ICValue#computeDetail()
*/ */
public String computeDetail() public String evaluateAsExpression()
{ {
return null; return null;
} }

View file

@ -537,9 +537,9 @@ public class CValue extends CDebugElement implements ICValue
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.model.ICValue#computeDetail() * @see org.eclipse.cdt.debug.core.model.ICValue#evaluateAsExpression()
*/ */
public String computeDetail() public String evaluateAsExpression()
{ {
ICExpressionEvaluator ee = (ICExpressionEvaluator)getDebugTarget().getAdapter( ICExpressionEvaluator.class ); ICExpressionEvaluator ee = (ICExpressionEvaluator)getDebugTarget().getAdapter( ICExpressionEvaluator.class );
String valueString = null; String valueString = null;