1*2e2212a7SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2e2212a7SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2e2212a7SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2e2212a7SAndrew Rist  * distributed with this work for additional information
6*2e2212a7SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2e2212a7SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2e2212a7SAndrew Rist  * "License"); you may not use this file except in compliance
9*2e2212a7SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2e2212a7SAndrew Rist  *
11*2e2212a7SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2e2212a7SAndrew Rist  *
13*2e2212a7SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2e2212a7SAndrew Rist  * software distributed under the License is distributed on an
15*2e2212a7SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2e2212a7SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2e2212a7SAndrew Rist  * specific language governing permissions and limitations
18*2e2212a7SAndrew Rist  * under the License.
19*2e2212a7SAndrew Rist  *
20*2e2212a7SAndrew Rist  *************************************************************/
21*2e2212a7SAndrew Rist 
22*2e2212a7SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef DBACCESS_SOURCE_SDBTOOLS_CONNECTION_TABLENAME_HXX
25cdf0e10cSrcweir #define DBACCESS_SOURCE_SDBTOOLS_CONNECTION_TABLENAME_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef DBACCESS_CONNECTION_DEPENDENT_HXX
28cdf0e10cSrcweir #include "connectiondependent.hxx"
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir 
31cdf0e10cSrcweir /** === begin UNO includes === **/
32cdf0e10cSrcweir #ifndef _COM_SUN_STAR_SDB_TOOLS_XTABLENAME_HPP_
33cdf0e10cSrcweir #include <com/sun/star/sdb/tools/XTableName.hpp>
34cdf0e10cSrcweir #endif
35cdf0e10cSrcweir /** === end UNO includes === **/
36cdf0e10cSrcweir 
37cdf0e10cSrcweir #ifndef _CPPUHELPER_IMPLBASE1_HXX_
38cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx>
39cdf0e10cSrcweir #endif
40cdf0e10cSrcweir 
41cdf0e10cSrcweir #include <memory>
42cdf0e10cSrcweir 
43cdf0e10cSrcweir //........................................................................
44cdf0e10cSrcweir namespace sdbtools
45cdf0e10cSrcweir {
46cdf0e10cSrcweir //........................................................................
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	//====================================================================
49cdf0e10cSrcweir 	//= TableName
50cdf0e10cSrcweir 	//====================================================================
51cdf0e10cSrcweir     typedef ::cppu::WeakImplHelper1 <   ::com::sun::star::sdb::tools::XTableName
52cdf0e10cSrcweir                                     >   TableName_Base;
53cdf0e10cSrcweir     struct TableName_Impl;
54cdf0e10cSrcweir     /** default implementation for XTableName
55cdf0e10cSrcweir     */
56cdf0e10cSrcweir     class TableName :public TableName_Base
57cdf0e10cSrcweir                     ,public ConnectionDependentComponent
58cdf0e10cSrcweir 	{
59cdf0e10cSrcweir     private:
60cdf0e10cSrcweir         ::std::auto_ptr< TableName_Impl >   m_pImpl;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     public:
63cdf0e10cSrcweir         /** constructs the instance
64cdf0e10cSrcweir 
65cdf0e10cSrcweir             @param _rContext
66cdf0e10cSrcweir                 the component's context
67cdf0e10cSrcweir             @param  _rxConnection
68cdf0e10cSrcweir                 the connection to work with. Will be held weak. Must not be <NULL/>.
69cdf0e10cSrcweir 
70cdf0e10cSrcweir             @throws ::com::sun::star::lang::NullPointerException
71cdf0e10cSrcweir                 if _rxConnection is <NULL/>
72cdf0e10cSrcweir         */
73cdf0e10cSrcweir         TableName(
74cdf0e10cSrcweir             const ::comphelper::ComponentContext& _rContext,
75cdf0e10cSrcweir             const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection
76cdf0e10cSrcweir         );
77cdf0e10cSrcweir 
78cdf0e10cSrcweir         // XTableName
79cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getCatalogName() throw (::com::sun::star::uno::RuntimeException);
80cdf0e10cSrcweir         virtual void SAL_CALL setCatalogName( const ::rtl::OUString& _catalogname ) throw (::com::sun::star::uno::RuntimeException);
81cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getSchemaName() throw (::com::sun::star::uno::RuntimeException);
82cdf0e10cSrcweir         virtual void SAL_CALL setSchemaName( const ::rtl::OUString& _schemaname ) throw (::com::sun::star::uno::RuntimeException);
83cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getTableName() throw (::com::sun::star::uno::RuntimeException);
84cdf0e10cSrcweir         virtual void SAL_CALL setTableName( const ::rtl::OUString& _tablename ) throw (::com::sun::star::uno::RuntimeException);
85cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getNameForSelect() throw (::com::sun::star::uno::RuntimeException);
86cdf0e10cSrcweir         virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > SAL_CALL getTable() throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
87cdf0e10cSrcweir         virtual void SAL_CALL setTable( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _table ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
88cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getComposedName( ::sal_Int32 Type, ::sal_Bool _Quote ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
89cdf0e10cSrcweir         virtual void SAL_CALL setComposedName( const ::rtl::OUString& ComposedName, ::sal_Int32 Type ) throw (::com::sun::star::uno::RuntimeException);
90cdf0e10cSrcweir 
91cdf0e10cSrcweir     protected:
92cdf0e10cSrcweir         virtual ~TableName();
93cdf0e10cSrcweir 
94cdf0e10cSrcweir     private:
95cdf0e10cSrcweir         TableName();                                // never implemented
96cdf0e10cSrcweir         TableName( const TableName& );              // never implemented
97cdf0e10cSrcweir         TableName& operator=( const TableName& );   // never implemented
98cdf0e10cSrcweir     };
99cdf0e10cSrcweir 
100cdf0e10cSrcweir //........................................................................
101cdf0e10cSrcweir } // namespace sdbtools
102cdf0e10cSrcweir //........................................................................
103cdf0e10cSrcweir 
104cdf0e10cSrcweir #endif // DBACCESS_SOURCE_SDBTOOLS_CONNECTION_TABLENAME_HXX
105cdf0e10cSrcweir 
106