1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef ODMA_DATASUPPLIER_HXX 25 #define ODMA_DATASUPPLIER_HXX 26 27 #include <ucbhelper/resultset.hxx> 28 29 namespace odma { 30 31 struct DataSupplier_Impl; 32 class Content; 33 34 class DataSupplier : public ucbhelper::ResultSetDataSupplier 35 { 36 DataSupplier_Impl* m_pImpl; 37 38 public: 39 DataSupplier( const com::sun::star::uno::Reference< 40 com::sun::star::lang::XMultiServiceFactory >& rxSMgr, 41 const rtl::Reference< Content >& rContent, 42 sal_Int32 nOpenMode ); 43 virtual ~DataSupplier(); 44 45 virtual rtl::OUString queryContentIdentifierString( sal_uInt32 nIndex ); 46 virtual com::sun::star::uno::Reference< 47 com::sun::star::ucb::XContentIdentifier > 48 queryContentIdentifier( sal_uInt32 nIndex ); 49 virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent > 50 queryContent( sal_uInt32 nIndex ); 51 52 virtual sal_Bool getResult( sal_uInt32 nIndex ); 53 54 virtual sal_uInt32 totalCount(); 55 virtual sal_uInt32 currentCount(); 56 virtual sal_Bool isCountFinal(); 57 58 virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow > 59 queryPropertyValues( sal_uInt32 nIndex ); 60 virtual void releasePropertyValues( sal_uInt32 nIndex ); 61 62 virtual void close(); 63 64 virtual void validate() 65 throw( com::sun::star::ucb::ResultSetException ); 66 }; 67 68 } 69 70 #endif 71