01: /**************************************************************************/
02: /* N I C E */
03: /* A high-level object-oriented research language */
04: /* (c) Daniel Bonniot 2002 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package gnu.bytecode;
12:
13: /**
14: A Generic Java parameterized type.
15:
16: @version $Date: 2002/09/09 12:59:26 $
17: @author Daniel Bonniot (bonniot@users.sourceforge.net)
18: */
19:
20: public class ParameterizedType extends ObjectType {
21: public ParameterizedType(ClassType main, Type[] parameters) {
22: this .main = main;
23: this .parameters = parameters;
24: }
25:
26: public ClassType main;
27: public Type[] parameters;
28: }
|