From 90549f9f0c37ad853c6f74a228ee0d698b3b280c Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Wed, 11 Dec 2002 16:07:12 +0000 Subject: [PATCH] setFormat() new method. --- .../eclipse/cdt/debug/core/cdi/model/ICDIVariable.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIVariable.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIVariable.java index 1b2c9ef522e..7c57b5324fa 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIVariable.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIVariable.java @@ -62,4 +62,13 @@ public interface ICDIVariable extends ICDIObject { * @throws CDIException if this method fails. Reasons include: */ void setValue(ICDIValue value) throws CDIException; + + /** + * Set the format of the variable. + * + * @param format - @see ICDIFormat + * @throws CDIException if this method fails. + */ + void setFormat(int format) throws CDIException; + }