use of abs.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 abs.backend.java.lib.runtime.ABSDynamicClass in project abstools by abstools.
the class ProductLine method singleton.
/*
* Create the singleton "ProductLine" class object
*/
public static ABSDynamicClass singleton() {
if (thisClass == null) {
thisClass = new ABSDynamicClass();
setupAPI();
}
return thisClass;
}
Aggregations