diff options
Diffstat (limited to 'svx/source/form/sdbdatacolumn.cxx')
-rw-r--r-- | svx/source/form/sdbdatacolumn.cxx | 224 |
1 files changed, 0 insertions, 224 deletions
diff --git a/svx/source/form/sdbdatacolumn.cxx b/svx/source/form/sdbdatacolumn.cxx index a98122243570..db8bfcbcce0b 100644 --- a/svx/source/form/sdbdatacolumn.cxx +++ b/svx/source/form/sdbdatacolumn.cxx @@ -49,230 +49,6 @@ namespace svxform } } - // Reference< XPropertySet> - Reference< XPropertySetInfo> DataColumn::getPropertySetInfo() const throw( RuntimeException ) - { - return m_xPropertySet->getPropertySetInfo(); - } - - void DataColumn::setPropertyValue(const OUString& aPropertyName, const Any& aValue) throw( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException ) - { - m_xPropertySet->setPropertyValue(aPropertyName, aValue); - } - - Any DataColumn::getPropertyValue(const OUString& PropertyName) const throw( UnknownPropertyException, WrappedTargetException, RuntimeException ) - { - return m_xPropertySet->getPropertyValue(PropertyName); - } - - void DataColumn::addPropertyChangeListener(const OUString& aPropertyName, const Reference< XPropertyChangeListener>& xListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException ) - { - m_xPropertySet->addPropertyChangeListener(aPropertyName, xListener); - } - - void DataColumn::removePropertyChangeListener(const OUString& aPropertyName, const Reference< XPropertyChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException ) - { - m_xPropertySet->removePropertyChangeListener(aPropertyName, aListener); - } - - void DataColumn::addVetoableChangeListener(const OUString& PropertyName, const Reference< XVetoableChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException ) - { - m_xPropertySet->addVetoableChangeListener(PropertyName, aListener); - } - - void DataColumn::removeVetoableChangeListener(const OUString& PropertyName, const Reference< XVetoableChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException ) - { - m_xPropertySet->removeVetoableChangeListener(PropertyName, aListener); - } - - // XColumn - bool DataColumn::wasNull() throw( SQLException, RuntimeException ) - { - return m_xColumn->wasNull(); - } - - OUString DataColumn::getString() throw( SQLException, RuntimeException ) - { - return m_xColumn->getString(); - } - - bool DataColumn::getBoolean() throw( SQLException, RuntimeException ) - { - return m_xColumn->getBoolean(); - } - - sal_Int8 DataColumn::getByte() throw( SQLException, RuntimeException ) - { - return m_xColumn->getByte(); - } - - sal_Int16 DataColumn::getShort() throw( SQLException, RuntimeException ) - { - return m_xColumn->getShort(); - } - - sal_Int32 DataColumn::getInt() throw( SQLException, RuntimeException ) - { - return m_xColumn->getInt(); - } - - sal_Int64 DataColumn::getLong() throw( SQLException, RuntimeException ) - { - return m_xColumn->getLong(); - } - - float DataColumn::getFloat() throw( SQLException, RuntimeException ) - { - return m_xColumn->getFloat(); - } - - double DataColumn::getDouble() throw( SQLException, RuntimeException ) - { - return m_xColumn->getDouble(); - } - - Sequence< sal_Int8 > DataColumn::getBytes() throw( SQLException, RuntimeException ) - { - return m_xColumn->getBytes(); - } - - com::sun::star::util::Date DataColumn::getDate() throw( SQLException, RuntimeException ) - { - return m_xColumn->getDate(); - } - - com::sun::star::util::Time DataColumn::getTime() throw( SQLException, RuntimeException ) - { - return m_xColumn->getTime(); - } - - com::sun::star::util::DateTime DataColumn::getTimestamp() throw( SQLException, RuntimeException ) - { - return m_xColumn->getTimestamp(); - } - - Reference< XInputStream> DataColumn::getBinaryStream() throw( SQLException, RuntimeException ) - { - return m_xColumn->getBinaryStream(); - } - - Reference< XInputStream> DataColumn::getCharacterStream() throw( SQLException, RuntimeException ) - { - return m_xColumn->getCharacterStream(); - } - - Any DataColumn::getObject(const Reference< XNameAccess>& typeMap) throw( SQLException, RuntimeException ) - { - return m_xColumn->getObject(typeMap); - } - - Reference< XRef> DataColumn::getRef() throw( SQLException, RuntimeException ) - { - return m_xColumn->getRef(); - } - - Reference< XBlob> DataColumn::getBlob() throw( SQLException, RuntimeException ) - { - return m_xColumn->getBlob(); - } - - Reference< XClob> DataColumn::getClob() throw( SQLException, RuntimeException ) - { - return m_xColumn->getClob(); - } - - Reference< XArray> DataColumn::getArray() throw( SQLException, RuntimeException ) - { - return m_xColumn->getArray(); - } - - // XColumnUpdate - void DataColumn::updateNull() throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateNull(); - } - - void DataColumn::updateBoolean(bool x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateBoolean(x); - } - - void DataColumn::updateByte(sal_Int8 x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateByte(x); - } - - void DataColumn::updateShort(sal_Int16 x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateShort(x); - } - - void DataColumn::updateInt(sal_Int32 x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateInt(x); - } - - void DataColumn::updateLong(sal_Int64 x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateLong(x); - } - - void DataColumn::updateFloat(float x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateFloat(x); - } - - void DataColumn::updateDouble(double x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateDouble(x); - } - - void DataColumn::updateString(const OUString& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateString(x); - } - - void DataColumn::updateBytes(const Sequence< sal_Int8 >& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateBytes(x); - } - - void DataColumn::updateDate(const com::sun::star::util::Date& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateDate(x); - } - - void DataColumn::updateTime(const com::sun::star::util::Time& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateTime(x); - } - - void DataColumn::updateTimestamp(const com::sun::star::util::DateTime& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateTimestamp(x); - } - - void DataColumn::updateBinaryStream(const Reference< XInputStream>& x, sal_Int32 length) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateBinaryStream(x, length); - } - - void DataColumn::updateCharacterStream(const Reference< XInputStream>& x, sal_Int32 length) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateCharacterStream(x, length); - } - - void DataColumn::updateObject(const Any& x) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateObject(x); - } - - void DataColumn::updateNumericObject(const Any& x, sal_Int32 scale) throw( SQLException, RuntimeException ) - { - m_xColumnUpdate->updateNumericObject(x, scale); - } - - } |