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

setFormat() new method.

This commit is contained in:
Alain Magloire 2002-12-11 16:07:12 +00:00
parent 1055f5efaf
commit 90549f9f0c

View file

@ -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;
}