use of org.abs_models.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class Delta method singleton.
/*
* Create singleton object
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupMetaAPI();
}
return thisClass;
}
use of org.abs_models.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class ObjectMirror method singleton.
/*
* Create the class object for object mirrors. This only happens once.
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupAPI();
}
return thisClass;
}
use of org.abs_models.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class Method method singleton.
/*
* Create singleton object
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupAPI();
}
return thisClass;
}
use of org.abs_models.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class Product method singleton.
/*
* Create singleton object
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupMetaAPI();
}
return thisClass;
}
use of org.abs_models.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class Reconfiguration method singleton.
/*
* Create singleton object
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupMetaAPI();
}
return thisClass;
}
Aggregations