KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jicengine > element > SimpleType


1 package org.jicengine.element;
2
3 /**
4  *
5  *
6  * <p>
7  * Copyright (C) 2004 Timo Laitinen
8  * </p>
9  * @author Timo Laitinen
10  * @created 2004-09-20
11  * @since JICE-0.10
12  *
13  */

14
15 public class SimpleType extends Type {
16
17     public SimpleType(String JavaDoc name, String JavaDoc[] parameters)
18     {
19         super(name,parameters);
20     }
21 }
22
Popular Tags