KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > param > types > InstType


1 package polyglot.ext.param.types;
2
3 import polyglot.types.*;
4 import java.util.List JavaDoc;
5
6 /**
7  * A parameterized type instantiated on actual arguments.
8  */

9 public interface InstType extends Type
10 {
11     PClass instantiatedFrom();
12     List JavaDoc actuals();
13 }
14
Popular Tags