Package org.eclipse.cdt.core.model
Interface ICElement
-
- All Superinterfaces:
org.eclipse.core.runtime.IAdaptable
- All Known Subinterfaces:
IArchive,IArchiveContainer,IAsmLabel,IBinary,IBinaryContainer,IBinaryElement,IBinaryFunction,IBinaryModule,IBinaryVariable,ICContainer,ICModel,IContributedCElement,ICProject,IDeclaration,IEnumeration,IEnumerator,IField,IFunction,IFunctionDeclaration,IFunctionTemplate,IFunctionTemplateDeclaration,IInclude,IIncludeReference,ILibraryReference,IMacro,IMember,IMethod,IMethodDeclaration,IMethodTemplate,IMethodTemplateDeclaration,INamespace,IPragma,ISourceRoot,IStructure,IStructureDeclaration,IStructureTemplate,IStructureTemplateDeclaration,ITranslationUnit,ITypeDef,IUsing,IVariable,IVariableDeclaration,IWorkingCopy
public interface ICElement extends org.eclipse.core.runtime.IAdaptableCommon protocol for all elements provided by the C model.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Field Summary
Fields Modifier and Type Field Description static intASM_LABELAssembly label.static intC_ARCHIVEstatic intC_BINARYstatic intC_CCONTAINERConstant representing a folder (ICContainer object).static intC_CLASSConstant representing a class structure.static intC_CLASS_CTORDeprecated.static intC_CLASS_DECLARATIONDeclaration of a class without the definition.static intC_CLASS_DTORDeprecated.static intC_ENUMERATIONEnumeration.static intC_ENUMERATOREnumerator.static intC_FIELDA Field definition part of a structure(class, struct, union).static intC_FUNCTIONa C/C++ function definition.static intC_FUNCTION_DECLARATIONa C/C++ function prototype.static intC_INCLUDEPreprocessor #include directive.static intC_MACROA preprocessor macro.static intC_METHODA method definition part of a structure(class, struct, union).static intC_METHOD_DECLARATIONA method declaration part of a structure(class, struct, union).static intC_MODELConstant representing a C Root workspace (IWorkspaceRoot object).static intC_NAMESPACENamespace.static intC_PRAGMAA pragma statement.static intC_PROJECTConstant representing a C project (IProject object).static intC_STORAGE_EXTERNDeprecated.not used anymorestatic intC_STORAGE_STATICDeprecated.static intC_STRUCTConstant representing a struct structure.static intC_STRUCT_DECLARATIONDeclaration of a structure without the definition.static intC_TEMPLATE_CLASSC++ template class with definition.static intC_TEMPLATE_CLASS_DECLARATIONC++ template class declaration without a definition.static intC_TEMPLATE_FUNCTIONC++ template function.static intC_TEMPLATE_FUNCTION_DECLARATIONC++ template function declaration.static intC_TEMPLATE_METHODC++ template method.static intC_TEMPLATE_METHOD_DECLARATIONC++ template method.static intC_TEMPLATE_STRUCTC++ template struct.static intC_TEMPLATE_STRUCT_DECLARATIONC++ template struct.static intC_TEMPLATE_UNIONC++ template union.static intC_TEMPLATE_UNION_DECLARATIONC++ template union.static intC_TEMPLATE_VARIABLEC++ template variable.static intC_TYPEDEFa Typedef.static intC_UNIONConstant representing a union structure.static intC_UNION_DECLARATIONDeclaration of a union without the definition.static intC_UNITConstant representing a C/C++ children of a Translation Unitstatic intC_UNKNOWN_DECLARATIONAn unknown ICElement.static intC_USINGUsing.static intC_VARIABLEGlobal variable.static intC_VARIABLE_DECLARATIONvariable Declaration.static intC_VARIABLE_LOCALLocal Variable.static intC_VCONTAINERVirtual container serving as a place holder.static intCPP_FRIENDDeprecated.static intCPP_PRIVATEDeprecated.static intCPP_PROTECTEDDeprecated.static intCPP_PUBLICDeprecated.static ICElement[]EMPTY_ARRAY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(ICElementVisitor visitor)Accept a visitor and walk the ICElement tree with it.booleanexists()Returns whether this C element exists in the model.ICElementgetAncestor(int ancestorType)Returns the first ancestor of this C element that has the given type.ICModelgetCModel()Returns the C model.ICProjectgetCProject()Returns the C project this element is contained in, ornullif this element is not contained in any C projectStringgetElementName()Returns the name of this element.intgetElementType()Returns this element's kind encoded as an integer.StringgetHandleIdentifier()Returns a string representation of this element handle.URIgetLocationURI()Returns an absolute URI corresponding to the innermost file enclosing this element.ICElementgetParent()Returns the element directly containing this element, ornullif this element has no parent.org.eclipse.core.runtime.IPathgetPath()Returns the path to the innermost resource enclosing this element.org.eclipse.core.resources.IResourcegetResource()Returns the corresponding resource for this element, ornullif this element does not have a corresponding resource.org.eclipse.core.resources.IResourcegetUnderlyingResource()Returns the underlying resource that contains this element, ornullif this element is not contained in a resource.booleanisReadOnly()Returns whether this C element is read-only.booleanisStructureKnown()Returns whether the structure of this element is known.
-
-
-
Field Detail
-
EMPTY_ARRAY
static final ICElement[] EMPTY_ARRAY
- Since:
- 5.6
-
C_MODEL
static final int C_MODEL
Constant representing a C Root workspace (IWorkspaceRoot object). A C element with this type can be safely cast toICModel.- See Also:
- Constant Field Values
-
C_PROJECT
static final int C_PROJECT
Constant representing a C project (IProject object). A C element with this type can be safely cast toICProject.- See Also:
- Constant Field Values
-
C_CCONTAINER
static final int C_CCONTAINER
Constant representing a folder (ICContainer object). A C element with this type can be safely cast toICContainer.- See Also:
- Constant Field Values
-
C_BINARY
static final int C_BINARY
- See Also:
- Constant Field Values
-
C_ARCHIVE
static final int C_ARCHIVE
- See Also:
- Constant Field Values
-
C_VCONTAINER
static final int C_VCONTAINER
Virtual container serving as a place holder.- See Also:
- Constant Field Values
-
C_UNIT
static final int C_UNIT
Constant representing a C/C++ children of a Translation Unit- See Also:
- Constant Field Values
-
C_NAMESPACE
static final int C_NAMESPACE
Namespace.- See Also:
- Constant Field Values
-
C_USING
static final int C_USING
Using.- See Also:
- Constant Field Values
-
C_ENUMERATION
static final int C_ENUMERATION
Enumeration.- See Also:
- Constant Field Values
-
C_CLASS_DECLARATION
static final int C_CLASS_DECLARATION
Declaration of a class without the definition. class C;- See Also:
- Constant Field Values
-
C_CLASS
static final int C_CLASS
Constant representing a class structure.- See Also:
- Constant Field Values
-
C_STRUCT_DECLARATION
static final int C_STRUCT_DECLARATION
Declaration of a structure without the definition. struct C;- See Also:
- Constant Field Values
-
C_STRUCT
static final int C_STRUCT
Constant representing a struct structure.- See Also:
- Constant Field Values
-
C_UNION_DECLARATION
static final int C_UNION_DECLARATION
Declaration of a union without the definition. struct C;- See Also:
- Constant Field Values
-
C_UNION
static final int C_UNION
Constant representing a union structure.- See Also:
- Constant Field Values
-
C_METHOD
static final int C_METHOD
A method definition part of a structure(class, struct, union).- See Also:
- Constant Field Values
-
C_METHOD_DECLARATION
static final int C_METHOD_DECLARATION
A method declaration part of a structure(class, struct, union).- See Also:
- Constant Field Values
-
C_FIELD
static final int C_FIELD
A Field definition part of a structure(class, struct, union).- See Also:
- Constant Field Values
-
C_FUNCTION_DECLARATION
static final int C_FUNCTION_DECLARATION
a C/C++ function prototype.- See Also:
- Constant Field Values
-
C_FUNCTION
static final int C_FUNCTION
a C/C++ function definition.- See Also:
- Constant Field Values
-
C_INCLUDE
static final int C_INCLUDE
Preprocessor #include directive.- See Also:
- Constant Field Values
-
C_VARIABLE
static final int C_VARIABLE
Global variable.- See Also:
- Constant Field Values
-
C_VARIABLE_DECLARATION
static final int C_VARIABLE_DECLARATION
variable Declaration.- See Also:
- Constant Field Values
-
C_VARIABLE_LOCAL
static final int C_VARIABLE_LOCAL
Local Variable.- See Also:
- Constant Field Values
-
C_MACRO
static final int C_MACRO
A preprocessor macro.- See Also:
- Constant Field Values
-
C_TYPEDEF
static final int C_TYPEDEF
a Typedef.- See Also:
- Constant Field Values
-
C_ENUMERATOR
static final int C_ENUMERATOR
Enumerator.- See Also:
- Constant Field Values
-
C_TEMPLATE_CLASS_DECLARATION
static final int C_TEMPLATE_CLASS_DECLARATION
C++ template class declaration without a definition.- See Also:
- Constant Field Values
-
C_TEMPLATE_CLASS
static final int C_TEMPLATE_CLASS
C++ template class with definition.- See Also:
- Constant Field Values
-
C_TEMPLATE_STRUCT_DECLARATION
static final int C_TEMPLATE_STRUCT_DECLARATION
C++ template struct.- See Also:
- Constant Field Values
-
C_TEMPLATE_STRUCT
static final int C_TEMPLATE_STRUCT
C++ template struct.- See Also:
- Constant Field Values
-
C_TEMPLATE_UNION_DECLARATION
static final int C_TEMPLATE_UNION_DECLARATION
C++ template union.- See Also:
- Constant Field Values
-
C_TEMPLATE_UNION
static final int C_TEMPLATE_UNION
C++ template union.- See Also:
- Constant Field Values
-
C_TEMPLATE_FUNCTION_DECLARATION
static final int C_TEMPLATE_FUNCTION_DECLARATION
C++ template function declaration.- See Also:
- Constant Field Values
-
C_TEMPLATE_FUNCTION
static final int C_TEMPLATE_FUNCTION
C++ template function.- See Also:
- Constant Field Values
-
C_TEMPLATE_METHOD_DECLARATION
static final int C_TEMPLATE_METHOD_DECLARATION
C++ template method.- See Also:
- Constant Field Values
-
C_TEMPLATE_METHOD
static final int C_TEMPLATE_METHOD
C++ template method.- See Also:
- Constant Field Values
-
C_TEMPLATE_VARIABLE
static final int C_TEMPLATE_VARIABLE
C++ template variable.- See Also:
- Constant Field Values
-
C_UNKNOWN_DECLARATION
static final int C_UNKNOWN_DECLARATION
An unknown ICElement. Mainly used to determine what elements are not yet implemented. i.e. the new DOM Parser supports open declaration on labels, while the old parser did not- See Also:
- Constant Field Values
-
ASM_LABEL
static final int ASM_LABEL
Assembly label.- Since:
- 5.0
- See Also:
- Constant Field Values
-
C_PRAGMA
static final int C_PRAGMA
A pragma statement.- Since:
- 7.3
- See Also:
- Constant Field Values
-
C_CLASS_CTOR
@Deprecated static final int C_CLASS_CTOR
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
C_CLASS_DTOR
@Deprecated static final int C_CLASS_DTOR
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
C_STORAGE_STATIC
@Deprecated static final int C_STORAGE_STATIC
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
C_STORAGE_EXTERN
@Deprecated static final int C_STORAGE_EXTERN
Deprecated.not used anymore- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
CPP_PRIVATE
@Deprecated static final int CPP_PRIVATE
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
CPP_PUBLIC
@Deprecated static final int CPP_PUBLIC
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
CPP_PROTECTED
@Deprecated static final int CPP_PROTECTED
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
CPP_FRIEND
@Deprecated static final int CPP_FRIEND
Deprecated.- See Also:
- Constant Field Values
- Restriction:
- This field is not intended to be referenced by clients.
-
-
Method Detail
-
exists
boolean exists()
Returns whether this C element exists in the model.- Returns:
trueif this element exists in the C model
-
getAncestor
ICElement getAncestor(int ancestorType)
Returns the first ancestor of this C element that has the given type. Returnsnullif no such an ancestor can be found. This is a handle-only method.- Parameters:
ancestorType- the given type- Returns:
- the first ancestor of this C element that has the given type,
nullif no such an ancestor can be found - Since:
- 2.0
-
getElementName
String getElementName()
Returns the name of this element.- Returns:
- the element name
-
getElementType
int getElementType()
Returns this element's kind encoded as an integer. This is a handle-only method.- Returns:
- the kind of element; one of the constants declared in
ICElement
-
getCModel
ICModel getCModel()
Returns the C model.- Returns:
- the C model
-
getCProject
ICProject getCProject()
Returns the C project this element is contained in, ornullif this element is not contained in any C project- Returns:
- the containing C project, or
nullif this element is not contained in a C project
-
getParent
ICElement getParent()
Returns the element directly containing this element, ornullif this element has no parent.- Returns:
- the parent element, or
nullif this element has no parent
-
getPath
org.eclipse.core.runtime.IPath getPath()
Returns the path to the innermost resource enclosing this element. If this element is not included in an external archive, the path returned is the full, absolute path to the underlying resource, relative to the workbench. If this element is included in an external archive, the path returned is the absolute path to the archive in the file system. This is a handle-only method.
-
getLocationURI
URI getLocationURI()
Returns an absolute URI corresponding to the innermost file enclosing this element.- Returns:
- the URI corresponding to the location
- Since:
- 5.0
-
getUnderlyingResource
org.eclipse.core.resources.IResource getUnderlyingResource()
Returns the underlying resource that contains this element, ornullif this element is not contained in a resource.- Returns:
- the underlying resource, or
nullif none
-
getResource
org.eclipse.core.resources.IResource getResource()
Returns the corresponding resource for this element, ornullif this element does not have a corresponding resource.- Returns:
- the corresponding resource, or
nullif none
-
isReadOnly
boolean isReadOnly()
Returns whether this C element is read-only. An element is read-only if its structure cannot be modified by the C model.- Returns:
trueif this element is read-only
-
isStructureKnown
boolean isStructureKnown() throws CModelExceptionReturns whether the structure of this element is known. For example, for a translation unit that could not be parsed,falseis returned. If the structure of an element is unknown, navigations will return reasonable defaults. For example,getChildrenwill return an empty collection.Note: This does not imply anything about consistency with the underlying resource/buffer contents.
- Returns:
trueif the structure of this element is known- Throws:
CModelException- if this element does not exist or if an exception occurs while accessing its corresponding resource
-
accept
void accept(ICElementVisitor visitor) throws org.eclipse.core.runtime.CoreException
Accept a visitor and walk the ICElement tree with it.- Parameters:
visitor-- Throws:
CModelExceptionorg.eclipse.core.runtime.CoreException
-
getHandleIdentifier
String getHandleIdentifier()
Returns a string representation of this element handle. The format of the string is not specified; however, the identifier is stable across workspace sessions, and can be used to recreate this handle via theCoreModel.create(String)method.Some element types, like binaries, do not support handle identifiers and return
null.- Returns:
- the string handle identifier, or
nullif the element type is not supported - Since:
- 5.0
- See Also:
CoreModel.create(java.lang.String)
-
-