Eclipse CDT
Pre-release 3.0

Uses of Interface
org.eclipse.cdt.core.dom.ast.IASTDeclarator

Packages that use IASTDeclarator
org.eclipse.cdt.core.dom.ast   
org.eclipse.cdt.core.dom.ast.cpp   
org.eclipse.cdt.core.dom.ast.gnu.c   
 

Uses of IASTDeclarator in org.eclipse.cdt.core.dom.ast
 

Subinterfaces of IASTDeclarator in org.eclipse.cdt.core.dom.ast
 interface IASTArrayDeclarator
          This is the declarator for an array.
 interface IASTFieldDeclarator
          This represents a field in a struct.
 interface IASTFunctionDeclarator
          This is a declarator for a function.
 interface IASTStandardFunctionDeclarator
          This is a declarator for a non K&R C function.
 

Fields in org.eclipse.cdt.core.dom.ast declared as IASTDeclarator
static IASTDeclarator[] IASTDeclarator.EMPTY_DECLARATOR_ARRAY
          Constant - empty declarator array
 

Methods in org.eclipse.cdt.core.dom.ast that return IASTDeclarator
 IASTDeclarator IASTTypeId.getAbstractDeclarator()
          Get the abstract declarator.
 IASTDeclarator IASTParameterDeclaration.getDeclarator()
          Get the declarator.
 IASTDeclarator[] IASTSimpleDeclaration.getDeclarators()
          This returns the list of declarators in this declaration.
 IASTDeclarator IASTDeclarator.getNestedDeclarator()
          If the declarator is nested in parenthesis, this returns the declarator as found in those parenethesis.
 

Methods in org.eclipse.cdt.core.dom.ast with parameters of type IASTDeclarator
 void IASTSimpleDeclaration.addDeclarator(IASTDeclarator declarator)
          Add a declarator.
static String ASTSignatureUtil.getParameterSignature(IASTDeclarator decltor)
          Returns the parameter signature for an IASTDeclarator as a comma separated list wrapped in parenthesis.
static String[] ASTSignatureUtil.getParameterSignatureArray(IASTDeclarator decltor)
          Returns a String[] corresponding to the signatures of individual parameters for an IASTDeclarator.
static String ASTSignatureUtil.getSignature(IASTDeclarator declarator)
          Returns the String signature corresponding to an IASTDeclarator.
static String ASTTypeUtil.getType(IASTDeclarator decltor)
          Returns the type representation of the declarator (including parameters) as a String.
 void IASTTypeId.setAbstractDeclarator(IASTDeclarator abstractDeclarator)
          Set the abstract declarator.
 void IASTParameterDeclaration.setDeclarator(IASTDeclarator declarator)
          Set the declarator.
 void IASTDeclarator.setNestedDeclarator(IASTDeclarator nested)
           
 int ASTVisitor.visit(IASTDeclarator declarator)
           
 

Uses of IASTDeclarator in org.eclipse.cdt.core.dom.ast.cpp
 

Subinterfaces of IASTDeclarator in org.eclipse.cdt.core.dom.ast.cpp
 interface ICPPASTFunctionDeclarator
          C++ adds a few things to function declarators.
 interface ICPPASTFunctionTryBlockDeclarator
          This is a function try block declarator.
 

Uses of IASTDeclarator in org.eclipse.cdt.core.dom.ast.gnu.c
 

Subinterfaces of IASTDeclarator in org.eclipse.cdt.core.dom.ast.gnu.c
 interface ICASTKnRFunctionDeclarator
          This is the declarator for a K&R C Function.
 

Methods in org.eclipse.cdt.core.dom.ast.gnu.c that return IASTDeclarator
 IASTDeclarator ICASTKnRFunctionDeclarator.getDeclaratorForParameterName(IASTName name)
          Map declarator to IASTName.
 


Eclipse CDT
Pre-release 3.0

Copyright (c) IBM Corp. and others 2004. All Rights Reserved.