Uses of Class
at.dms.kjc.JFormalParameter

Packages that use JFormalParameter
at.dms.kjc   
 

Uses of JFormalParameter in at.dms.kjc
 

Fields in at.dms.kjc declared as JFormalParameter
static JFormalParameter[] JFormalParameter.EMPTY
           
 

Methods in at.dms.kjc that return JFormalParameter
 JFormalParameter[] KjcParser.jParameterDeclarationList(int desc)
           
 JFormalParameter KjcParser.jParameterDeclaration(int desc)
           
 JFormalParameter[] JMethodDeclaration.getParameters()
           
 JFormalParameter JCatchClause.getException()
          Returns the parameter declaration for the exception caught by this catch clause.
 

Methods in at.dms.kjc with parameters of type JFormalParameter
 void KjcPrettyPrinter.visitMethodDeclaration(JMethodDeclaration self, int modifiers, CType returnType, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JBlock body)
          prints a method declaration
 void KjcPrettyPrinter.visitConstructorDeclaration(JConstructorDeclaration self, int modifiers, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JBlock body)
          prints a method declaration
 void KjcPrettyPrinter.visitCatchClause(JCatchClause self, JFormalParameter exception, JBlock body)
          prints an array length expression
 void KjcPrettyPrinter.visitFormalParameters(JFormalParameter self, boolean isFinal, CType type, java.lang.String ident)
          prints a list of formal parameters to a method
 void KjcVisitor.visitMethodDeclaration(JMethodDeclaration self, int modifiers, CType returnType, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JBlock body)
          visits a method declaration
 void KjcVisitor.visitConstructorDeclaration(JConstructorDeclaration self, int modifiers, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JBlock body)
          visits a method declaration
 void KjcVisitor.visitCatchClause(JCatchClause self, JFormalParameter exception, JBlock body)
          visits an array length expression
 void KjcVisitor.visitFormalParameters(JFormalParameter self, boolean isFinal, CType type, java.lang.String ident)
          visits an array length expression
 

Constructors in at.dms.kjc with parameters of type JFormalParameter
JMethodDeclaration(TokenReference where, int modifiers, CType returnType, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JBlock body, JavadocComment javadoc, JavaStyleComment[] comments)
          Construct a node in the parsing tree.
JConstructorDeclaration(TokenReference where, int modifiers, java.lang.String ident, JFormalParameter[] parameters, CClassType[] exceptions, JConstructorBlock body, JavadocComment javadoc, JavaStyleComment[] comments)
          Construct a node in the parsing tree.
JCatchClause(TokenReference where, JFormalParameter exception, JBlock body)
          Construct a node in the parsing tree.