}
public Instance getMetaclass(JType aType)
{
checkInit();
Instance theInstance = itsLoadedMetaclasses.get(aType);
if (theInstance == null)
{
theInstance = new Instance(itsMetaclassClass, aType);
itsLoadedMetaclasses.put(aType, theInstance);
}
return theInstance;
}