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 * @author akima
13 */
14 public class JavaLangClass extends EmbeddedClass {
15
16 /***
17 *
18 */
19 protected JavaLangClass(String name, TypeCategory category) {
20 super("java.lang", name, category);
21 }
22
23 public static final JavaLangClass STRING = new JavaLangClass("String", TypeCategory.STRING);
24 }