|
Eclipse CDT 7.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IASTDeclSpecifier
This is the base interface that represents a declaration specifier sequence.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
IASTNode.CopyStyle |
Field Summary | |
---|---|
static int |
sc_auto
|
static int |
sc_extern
|
static int |
sc_last
Deprecated. All constants must be defined in this interface. |
static int |
sc_mutable
|
static int |
sc_register
|
static int |
sc_static
|
static int |
sc_typedef
|
static int |
sc_unspecified
No storage class specified. |
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
EMPTY_NODE_ARRAY |
Method Summary | |
---|---|
IASTDeclSpecifier |
copy()
Returns a mutable copy of the tree rooted at this node. |
IASTDeclSpecifier |
copy(IASTNode.CopyStyle style)
Returns a mutable copy of the tree rooted at this node. |
int |
getStorageClass()
Returns the storage class, which is one of the constants sc_... |
boolean |
isConst()
|
boolean |
isInline()
|
boolean |
isRestrict()
|
boolean |
isVolatile()
|
void |
setConst(boolean value)
Not allowed on frozen ast. |
void |
setInline(boolean value)
Not allowed on frozen ast. |
void |
setRestrict(boolean value)
Not allowed on frozen ast. |
void |
setStorageClass(int storageClass)
Not allowed on frozen ast. |
void |
setVolatile(boolean value)
Not allowed on frozen ast. |
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent |
Field Detail |
---|
static final int sc_unspecified
static final int sc_typedef
static final int sc_extern
static final int sc_static
static final int sc_auto
static final int sc_register
static final int sc_mutable
@Deprecated static final int sc_last
Method Detail |
---|
int getStorageClass()
boolean isConst()
boolean isVolatile()
boolean isRestrict()
boolean isInline()
IASTDeclSpecifier 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.
Calling this method is equivalent
copy
in interface IASTNode
IASTDeclSpecifier copy(IASTNode.CopyStyle style)
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 IASTNode
style
- IASTNode.CopyStyle
create a copy with or without locations. Please see
IASTNode.CopyStyle
for restrictions on copies with Locations.void setStorageClass(int storageClass)
void setConst(boolean value)
void setVolatile(boolean value)
void setRestrict(boolean value)
void setInline(boolean value)
|
Eclipse CDT 7.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |