FileDocCategorySizeDatePackage
ExecutableDeclaration.javaAPI DocJava SE 5 API1768Fri Aug 26 14:55:14 BST 2005com.sun.mirror.declaration

ExecutableDeclaration

public interface ExecutableDeclaration implements MemberDeclaration
Represents a method or constructor of a class or interface.
author
Joseph D. Darcy
author
Scott Seligman
version
1.2 04/03/08
since
1.5

Fields Summary
Constructors Summary
Methods Summary
public java.util.CollectiongetFormalTypeParameters()
Returns the formal type parameters of this method or constructor. They are returned in declaration order.

return
the formal type parameters of this method or constructor, or an empty collection if there are none

public java.util.CollectiongetParameters()
Returns the formal parameters of this method or constructor. They are returned in declaration order.

return
the formal parameters of this method or constructor, or an empty collection if there are none

public java.util.CollectiongetThrownTypes()
Returns the exceptions and other throwables listed in this method or constructor's throws clause.

return
the exceptions and other throwables listed in the throws clause, or an empty collection if there are none

public booleanisVarArgs()
Returns true if this method or constructor accepts a variable number of arguments.

return
true if this method or constructor accepts a variable number of arguments