|
Eclipse CDT Pre-release 3.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IASTLiteralExpression
This expression represents a literal in the program.
Field Summary | |
---|---|
static int |
lk_char_constant
A char literal e.g. |
static int |
lk_false
lk_false represents the 'false' keyword. |
static int |
lk_float_constant
A floating point literal e.g. 6.0 |
static int |
lk_integer_constant
An integer literal e.g. 5 |
static int |
lk_last
Deprecated. all possible values must be defined in IASTLiteralExpression . |
static int |
lk_string_literal
A string literal e.g. |
static int |
lk_this
lk_this represents the 'this' keyword for c++ only. |
static int |
lk_true
lk_true represents the 'true' keyword. |
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression |
---|
EMPTY_EXPRESSION_ARRAY |
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
EMPTY_NODE_ARRAY |
Method Summary | |
---|---|
IASTLiteralExpression |
copy()
Returns a mutable copy of the tree rooted at this node. |
int |
getKind()
Get the literal expression kind. |
char[] |
getValue()
Returns the value of the literal as char-array. |
void |
setKind(int value)
Set the literal expression kind. |
void |
setValue(char[] value)
Provide the value for the expression. |
void |
setValue(String value)
|
String |
toString()
Returns the value of the literal as string. |
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression |
---|
getExpressionType |
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent |
Field Detail |
---|
static final int lk_integer_constant
static final int lk_float_constant
static final int lk_char_constant
static final int lk_string_literal
@Deprecated static final int lk_last
IASTLiteralExpression
.
static final int lk_this
lk_this
represents the 'this' keyword for c++ only.
static final int lk_true
lk_true
represents the 'true' keyword.
static final int lk_false
lk_false
represents the 'false' keyword.
Method Detail |
---|
int getKind()
char[] getValue()
String toString()
toString
in class Object
void setKind(int value)
void setValue(char[] value)
void setValue(String value)
IASTLiteralExpression copy()
IASTNode
copy.getParent() == null
copy.getPropertyInParent() == null
copy.isFrozen() == false
Preprocessor nodes do not currently support being copied.
Implicit name nodes are not copied, instead they can be regenerated
if required.
copy
in interface IASTExpression
copy
in interface IASTNode
|
Eclipse CDT Pre-release 3.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |