Uses of Class
com.github.antlrjavaparser.api.body.Parameter

Packages that use Parameter
com.github.antlrjavaparser   
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api.body   
com.github.antlrjavaparser.api.visitor   
 

Uses of Parameter in com.github.antlrjavaparser
 

Methods in com.github.antlrjavaparser that return Parameter
static Parameter ASTHelper.createParameter(Type type, String name)
          Creates a new Parameter.
 

Methods in com.github.antlrjavaparser with parameters of type Parameter
static void ASTHelper.addParameter(MethodDeclaration method, Parameter parameter)
          Adds the given parameter to the method.
 

Uses of Parameter in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return Parameter
 Parameter EllipsisParameterDeclContextAdapter.adapt(Java7Parser.EllipsisParameterDeclContext context)
           
 Parameter NormalParameterDeclContextAdapter.adapt(Java7Parser.NormalParameterDeclContext context)
           
 

Methods in com.github.antlrjavaparser.adapter that return types with arguments of type Parameter
 List<Parameter> FormalParameterDeclsContextAdapter.adapt(Java7Parser.FormalParameterDeclsContext context)
           
 List<Parameter> FormalParametersContextAdapter.adapt(Java7Parser.FormalParametersContext context)
           
 

Methods in com.github.antlrjavaparser.adapter with parameters of type Parameter
static void AdapterUtil.setVariableModifiers(Java7Parser.VariableModifiersContext context, Parameter parameter)
           
 

Uses of Parameter in com.github.antlrjavaparser.api.body
 

Methods in com.github.antlrjavaparser.api.body that return types with arguments of type Parameter
 List<Parameter> MethodDeclaration.getParameters()
           
 List<Parameter> ConstructorDeclaration.getParameters()
           
 

Method parameters in com.github.antlrjavaparser.api.body with type arguments of type Parameter
 void MethodDeclaration.setParameters(List<Parameter> parameters)
           
 void ConstructorDeclaration.setParameters(List<Parameter> parameters)
           
 

Constructor parameters in com.github.antlrjavaparser.api.body with type arguments of type Parameter
ConstructorDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, String name, List<Parameter> parameters, List<NameExpr> throws_, BlockStmt block)
           
ConstructorDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, String name, List<Parameter> parameters, List<NameExpr> throws_, BlockStmt block)
           
MethodDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, Type type, String name, List<Parameter> parameters, int arrayCount, List<NameExpr> throws_, BlockStmt block)
           
MethodDeclaration(int modifiers, Type type, String name, List<Parameter> parameters)
           
MethodDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, Type type, String name, List<Parameter> parameters, int arrayCount, List<NameExpr> throws_, BlockStmt block)
           
 

Uses of Parameter in com.github.antlrjavaparser.api.visitor
 

Methods in com.github.antlrjavaparser.api.visitor with parameters of type Parameter
 void VoidVisitorAdapter.visit(Parameter n, A arg)
           
 void VoidVisitor.visit(Parameter n, A arg)
           
 Node ModifierVisitorAdapter.visit(Parameter n, A arg)
           
 R GenericVisitorAdapter.visit(Parameter n, A arg)
           
 R GenericVisitor.visit(Parameter n, A arg)
           
 Boolean EqualsVisitor.visit(Parameter n1, Node arg)
           
 void DumpVisitor.visit(Parameter n, Object arg)
           
 



Copyright © 2013. All Rights Reserved.