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:
parent
fc9a1bc154
commit
1a2df38e62
4 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
Removed the redundant methods from the 'ICDIFloatingPointValue' interface.
|
||||
* ICDIFloatingPointValue.java
|
||||
|
|
|
@ -28,7 +28,7 @@ public interface ICValue extends IValue
|
|||
*/
|
||||
String getUnderlyingValueString();
|
||||
|
||||
String computeDetail();
|
||||
String evaluateAsExpression();
|
||||
|
||||
void setChanged( boolean changed ) throws DebugException;
|
||||
}
|
||||
|
|
|
@ -148,7 +148,7 @@ public class CArrayPartitionValue extends CDebugElement implements ICValue
|
|||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.core.model.ICValue#computeDetail()
|
||||
*/
|
||||
public String computeDetail()
|
||||
public String evaluateAsExpression()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -537,9 +537,9 @@ public class CValue extends CDebugElement implements ICValue
|
|||
}
|
||||
|
||||
/* (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 );
|
||||
String valueString = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue