21 lines
397 B
Java
21 lines
397 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.sys.schema;
|
|
|
|
import com.tridium.sys.schema.Introspector;
|
|
import com.tridium.sys.schema.ObjectType;
|
|
import javax.baja.sys.Type;
|
|
|
|
class ObjectIntrospector
|
|
extends Introspector {
|
|
Type introspect() throws Exception {
|
|
return new ObjectType(this);
|
|
}
|
|
|
|
ObjectIntrospector(int n, Class clazz) {
|
|
super(n, clazz);
|
|
}
|
|
}
|
|
|