KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > source > tree > ParameterizedTypeTree


1 /*
2  * @(#)ParameterizedTypeTree.java 1.2 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  *
7  * Use and Distribution is subject to the Java Research License available
8  * at <http://wwws.sun.com/software/communitysource/jrl.html>.
9  */

10
11 package com.sun.source.tree;
12
13 import java.util.List JavaDoc;
14
15 /**
16  * A tree node for a type expression involving type parameters.
17  *
18  * For example:
19  * <pre>
20  * <em>type</em> &lt; <em>typeArguments</em> &gt;
21  * </pre>
22  *
23  * @see "The Java Language Specification, 3rd ed, section 4.5.1"
24  *
25  * @author Peter von der Ah&eacute;
26  * @author Jonathan Gibbons
27  * @since 1.6
28  */

29 public interface ParameterizedTypeTree extends Tree {
30     Tree getType();
31     List JavaDoc<? extends Tree> getTypeArguments();
32 }
33
Popular Tags