API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.lang.model.element. ExecutableElement View Source
Author(s)
Joseph D. Darcy
Scott Seligman
Peter von der Ahé
Since
1.6
Version
1.4 06/07/11
Serial
Hierarchy
 Element
      ExecutableElement
Subinterfaces
Description
public interface ExecutableElement
  Represents a method, constructor, or initializer (static or instance) of a class or interface, including annotation type elements.
See also:    ExecutableType
Methods
Hide/Show inherited methods
public AnnotationValue getDefaultValue ()
  Returns the default value if this executable is an annotation type element.
public List<VariableElement> getParameters ()
  Returns the formal parameters of this executable.
public TypeMirror getReturnType ()
  Returns the return type of this executable.
public List<TypeMirror> getThrownTypes ()
  Returns the exceptions and other throwables listed in this method or constructor's throws clause in declaration order.
public List<TypeParameterElement> getTypeParameters ()
  Returns the formal type parameters of this executable in declaration order.
public boolean isVarArgs ()
  Returns true if this method or constructor accepts a variable number of arguments and returns false otherwise.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar