Uses of Interface
org.eclipse.wst.jsdt.core.ast.IFunctionDeclaration

Packages that use IFunctionDeclaration
org.eclipse.wst.jsdt.core.ast   
org.eclipse.wst.jsdt.core.infer   
 

Uses of IFunctionDeclaration in org.eclipse.wst.jsdt.core.ast
 

Subinterfaces of IFunctionDeclaration in org.eclipse.wst.jsdt.core.ast
 interface IAnnotationFunctionDeclaration
           This interface is not intended to be implemented by clients.
 

Methods in org.eclipse.wst.jsdt.core.ast with parameters of type IFunctionDeclaration
 void ASTVisitor.endVisit(IFunctionDeclaration methodDeclaration)
           
 boolean ASTVisitor.visit(IFunctionDeclaration functionDeclaration)
           
 

Uses of IFunctionDeclaration in org.eclipse.wst.jsdt.core.infer
 

Methods in org.eclipse.wst.jsdt.core.infer that return IFunctionDeclaration
 IFunctionDeclaration InferredMethod.getFunctionDeclaration()
           
 

Methods in org.eclipse.wst.jsdt.core.infer with parameters of type IFunctionDeclaration
 InferredMethod InferredType.addMethod(char[] methodName, IFunctionDeclaration functionDeclaration, boolean isConstructor)
          Add a new method to the inferred type
 void InferEngine.endVisit(IFunctionDeclaration methodDeclaration)
           
 InferredMethod InferredType.findMethod(char[] methodName, IFunctionDeclaration methodDeclaration)
          Find an inferred method
 boolean InferEngine.visit(IFunctionDeclaration methodDeclaration)
           
 

Constructors in org.eclipse.wst.jsdt.core.infer with parameters of type IFunctionDeclaration
InferredMethod(char[] name, IFunctionDeclaration functionDeclaration, InferredType inType)