started = true;
}
protected POManagerFactoryItf getThis() {
if (_this == null) {
throw new JDODataStoreException(
"Cannot provides a PersistenceManager without a reference to the component");
} else if (_this instanceof Component) {
try {
_this = ((Component)_this).getFcInterface("po-manager-factory");
} catch (NoSuchInterfaceException e) {
throw new JDODataStoreException(
"Cannot provides a PersistenceManager ", new Exception[]{e});
}
}
return (POManagerFactoryItf) _this;
}