summaryrefslogtreecommitdiff
path: root/ucb/source/core/ucbstore.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/core/ucbstore.cxx')
-rw-r--r--ucb/source/core/ucbstore.cxx56
1 files changed, 0 insertions, 56 deletions
diff --git a/ucb/source/core/ucbstore.cxx b/ucb/source/core/ucbstore.cxx
index 8d285b8b2134..3f96e21914d6 100644
--- a/ucb/source/core/ucbstore.cxx
+++ b/ucb/source/core/ucbstore.cxx
@@ -50,7 +50,6 @@ using namespace com::sun::star::util;
using namespace cppu;
-
OUString makeHierarchalNameSegment( const OUString & rIn )
{
OUStringBuffer aBuffer;
@@ -133,11 +132,9 @@ public:
};
-
// UcbStore_Impl.
-
struct UcbStore_Impl
{
osl::Mutex m_aMutex;
@@ -146,15 +143,9 @@ struct UcbStore_Impl
};
-
-
-
// UcbStore Implementation.
-
-
-
UcbStore::UcbStore( const Reference< XComponentContext >& xContext )
: m_xContext( xContext ),
m_pImpl( new UcbStore_Impl() )
@@ -173,19 +164,15 @@ XSERVICEINFO_IMPL_1_CTX( UcbStore,
STORE_SERVICE_NAME );
-
// Service factory implementation.
-
ONE_INSTANCE_SERVICE_FACTORY_IMPL( UcbStore );
-
// XPropertySetRegistryFactory methods.
-
// virtual
Reference< XPropertySetRegistry > SAL_CALL
UcbStore::createPropertySetRegistry( const OUString& )
@@ -205,11 +192,9 @@ UcbStore::createPropertySetRegistry( const OUString& )
}
-
// XInitialization methods.
-
// virtual
void SAL_CALL UcbStore::initialize( const Sequence< Any >& aArguments )
throw( Exception, RuntimeException, std::exception )
@@ -225,11 +210,9 @@ const Sequence< Any >& UcbStore::getInitArgs() const
}
-
// PropertySetRegistry_Impl.
-
struct PropertySetRegistry_Impl
{
const Sequence< Any > m_aInitArgs;
@@ -252,9 +235,6 @@ struct PropertySetRegistry_Impl
// PropertySetRegistry Implementation.
-
-
-
PropertySetRegistry::PropertySetRegistry(
const Reference< XComponentContext >& xContext,
const Sequence< Any > &rInitArgs )
@@ -270,21 +250,17 @@ PropertySetRegistry::~PropertySetRegistry()
}
-
// XServiceInfo methods.
-
XSERVICEINFO_NOFACTORY_IMPL_1( PropertySetRegistry,
OUString( "com.sun.star.comp.ucb.PropertySetRegistry" ),
PROPSET_REG_SERVICE_NAME );
-
// XPropertySetRegistry methods.
-
// virtual
Reference< XPersistentPropertySet > SAL_CALL
PropertySetRegistry::openPropertySet( const OUString& key, sal_Bool create )
@@ -473,11 +449,9 @@ void SAL_CALL PropertySetRegistry::removePropertySet( const OUString& key )
}
-
// XElementAccess methods.
-
// virtual
css::uno::Type SAL_CALL PropertySetRegistry::getElementType()
throw( RuntimeException, std::exception )
@@ -501,11 +475,9 @@ sal_Bool SAL_CALL PropertySetRegistry::hasElements()
}
-
// XNameAccess methods.
-
// virtual
Any SAL_CALL PropertySetRegistry::getByName( const OUString& aName )
throw( NoSuchElementException, WrappedTargetException, RuntimeException, std::exception )
@@ -1128,15 +1100,9 @@ struct PersistentPropertySet_Impl
};
-
-
-
// PersistentPropertySet Implementation.
-
-
-
PersistentPropertySet::PersistentPropertySet(
const Reference< XComponentContext >& xContext,
PropertySetRegistry& rCreator,
@@ -1159,17 +1125,14 @@ PersistentPropertySet::~PersistentPropertySet()
// XServiceInfo methods.
-
XSERVICEINFO_NOFACTORY_IMPL_1( PersistentPropertySet,
OUString( "com.sun.star.comp.ucb.PersistentPropertySet" ),
PERS_PROPSET_SERVICE_NAME );
-
// XComponent methods.
-
// virtual
void SAL_CALL PersistentPropertySet::dispose()
throw( RuntimeException, std::exception )
@@ -1224,11 +1187,9 @@ void SAL_CALL PersistentPropertySet::removeEventListener(
}
-
// XPropertySet methods.
-
// virtual
Reference< XPropertySetInfo > SAL_CALL PersistentPropertySet::getPropertySetInfo()
throw( RuntimeException, std::exception )
@@ -1449,11 +1410,9 @@ void SAL_CALL PersistentPropertySet::removeVetoableChangeListener(
}
-
// XPersistentPropertySet methods.
-
// virtual
Reference< XPropertySetRegistry > SAL_CALL PersistentPropertySet::getRegistry()
throw( RuntimeException, std::exception )
@@ -1470,11 +1429,9 @@ OUString SAL_CALL PersistentPropertySet::getKey()
}
-
// XNamed methods.
-
// virtual
OUString SAL_CALL PersistentPropertySet::getName()
throw( RuntimeException, std::exception )
@@ -1493,11 +1450,9 @@ void SAL_CALL PersistentPropertySet::setName( const OUString& aName )
}
-
// XPropertyContainer methods.
-
// virtual
void SAL_CALL PersistentPropertySet::addProperty(
const OUString& Name, sal_Int16 Attributes, const Any& DefaultValue )
@@ -1810,11 +1765,9 @@ void SAL_CALL PersistentPropertySet::removeProperty( const OUString& Name )
}
-
// XPropertySetInfoChangeNotifier methods.
-
// virtual
void SAL_CALL PersistentPropertySet::addPropertySetInfoChangeListener(
const Reference< XPropertySetInfoChangeListener >& Listener )
@@ -1838,11 +1791,9 @@ void SAL_CALL PersistentPropertySet::removePropertySetInfoChangeListener(
}
-
// XPropertyAccess methods.
-
// virtual
Sequence< PropertyValue > SAL_CALL PersistentPropertySet::getPropertyValues()
throw( RuntimeException, std::exception )
@@ -2103,11 +2054,9 @@ void SAL_CALL PersistentPropertySet::setPropertyValues(
}
-
// Non-interface methods
-
void PersistentPropertySet::notifyPropertyChangeEvent(
const PropertyChangeEvent& rEvent ) const
{
@@ -2189,13 +2138,9 @@ PropertySetRegistry& PersistentPropertySet::getPropertySetRegistry()
}
-
-
// PropertySetInfo_Impl Implementation.
-
-
PropertySetInfo_Impl::PropertySetInfo_Impl(
const Reference< XComponentContext >& xContext,
PersistentPropertySet* pOwner )
@@ -2217,7 +2162,6 @@ PropertySetInfo_Impl::~PropertySetInfo_Impl()
// XPropertySetInfo methods.
-
// virtual
Sequence< Property > SAL_CALL PropertySetInfo_Impl::getProperties()
throw( RuntimeException, std::exception )