22 lines
496 B
Java
22 lines
496 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.sys.schema;
|
|
|
|
import com.tridium.sys.schema.Introspector;
|
|
import com.tridium.sys.schema.SingletonType;
|
|
import javax.baja.sys.BSingleton;
|
|
import javax.baja.sys.Type;
|
|
|
|
class SingletonIntrospector
|
|
extends Introspector {
|
|
Type introspect() throws Exception {
|
|
return new SingletonType(this, (BSingleton)this.getConstantFieldObject("INSTANCE"));
|
|
}
|
|
|
|
SingletonIntrospector(int n, Class clazz) {
|
|
super(n, clazz);
|
|
}
|
|
}
|
|
|