View Javadoc

1   /*
2    * joey-gen and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/08/29 3:59:41
6    */
7   package org.asyrinx.joey.gen.model.java.classes;
8   
9   import org.asyrinx.joey.gen.model.java.TypeCategory;
10  
11  
12  /***
13   * @author akima
14   */
15  public class JavaUtilClass extends EmbeddedClass {
16  
17      /***
18       *  
19       */
20      protected JavaUtilClass(String name, TypeCategory category) {
21          super("java.util", name, category);
22      }
23  
24  
25      public static final JavaUtilClass DATE = new JavaUtilClass("Date", TypeCategory.DATE);
26  
27  }