*/
public IPersistenceService getPersistenceService() {
if (persistenceService == null) {
XStorable xStorable = (XStorable) UnoRuntime.queryInterface(
XStorable.class, xComponent);
persistenceService = new PersistenceService(this, xStorable);
}
return persistenceService;
}