Source code: javax/ide/model/java/source/tree/FormalParameterListT.java
1 /*
2 * @(#)FormalParameterListT.java
3 */
4
5 package javax.ide.model.java.source.tree;
6
7 import java.util.List;
8
9 /**
10 * A formal parameter list. May be a child of a method/constructor
11 * declaration or a catch clause. <p/>
12 *
13 * @author Andy Yu
14 * */
15 public interface FormalParameterListT
16 extends Tree
17 {
18 // ----------------------------------------------------------------------
19
20 /**
21 * Gets the list of source parameters.
22 *
23 * @return The array of VariableTs for all the parameters in its
24 * formal parameter list. May be zero-length. Includes the synthetic
25 * "this$0" parameter where applicable. Returns a collection of
26 * VariableT's. <p/>
27 *
28 * List of FormalParameterTs.
29 */
30 public List getParameters();
31
32
33 // ----------------------------------------------------------------------
34 }