Package org.eclipse.cdt.core.dom.ast
Class IScope.ScopeLookupData
- java.lang.Object
-
- org.eclipse.cdt.core.dom.ast.IScope.ScopeLookupData
-
-
Constructor Summary
Constructors Constructor Description ScopeLookupData(char[] name, IASTNode point)ScopeLookupData(char[] name, IASTTranslationUnit tu)ScopeLookupData(IASTName name, boolean resolve, boolean prefixLookup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IIndexFileSetgetIncludedFiles()IIndexgetIndex()char[]getLookupKey()IASTNamegetLookupName()IASTNodegetLookupPoint()IASTTranslationUnitgetTranslationUnit()booleanisArgumentDependent()booleanisIgnorePointOfDeclaration()booleanisPrefixLookup()booleanisResolve()voidsetArgumentDependent(boolean argumentDependent)voidsetIgnorePointOfDeclaration(boolean ignorePointOfDeclaration)voidsetLookupKey(char[] key)voidsetPrefixLookup(boolean prefixLookup)voidsetResolve(boolean resolve)
-
-
-
Constructor Detail
-
ScopeLookupData
public ScopeLookupData(IASTName name, boolean resolve, boolean prefixLookup)
-
ScopeLookupData
public ScopeLookupData(char[] name, IASTNode point)
-
ScopeLookupData
public ScopeLookupData(char[] name, IASTTranslationUnit tu)- Since:
- 5.11
-
-
Method Detail
-
setPrefixLookup
public final void setPrefixLookup(boolean prefixLookup)
-
setResolve
public final void setResolve(boolean resolve)
-
setIgnorePointOfDeclaration
public final void setIgnorePointOfDeclaration(boolean ignorePointOfDeclaration)
-
setArgumentDependent
public final void setArgumentDependent(boolean argumentDependent)
- Since:
- 6.3
-
setLookupKey
public final void setLookupKey(char[] key)
-
getLookupKey
public final char[] getLookupKey()
-
getLookupPoint
public final IASTNode getLookupPoint()
-
isResolve
public final boolean isResolve()
-
isPrefixLookup
public final boolean isPrefixLookup()
-
isIgnorePointOfDeclaration
public final boolean isIgnorePointOfDeclaration()
-
isArgumentDependent
public final boolean isArgumentDependent()
- Since:
- 6.3
-
getIncludedFiles
public final IIndexFileSet getIncludedFiles()
-
getIndex
public final IIndex getIndex()
-
getLookupName
public final IASTName getLookupName()
-
getTranslationUnit
public IASTTranslationUnit getTranslationUnit()
-
-