/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: webdavresultset.cxx,v $ * $Revision: 1.7 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_ucb.hxx" /************************************************************************** TODO ************************************************************************** - This implementation is not a dynamic result set!!! It only implements the necessary interfaces, but never recognizes/notifies changes!!! *************************************************************************/ #include "webdavresultset.hxx" #ifndef _WEBDAV_SESSION_HXX #include "DAVSession.hxx" #endif using namespace com::sun::star; using namespace webdav_ucp; //========================================================================= //========================================================================= // // DynamicResultSet Implementation. // //========================================================================= //========================================================================= DynamicResultSet::DynamicResultSet( const uno::Reference< lang::XMultiServiceFactory >& rxSMgr, const rtl::Reference< Content >& rxContent, const ucb::OpenCommandArgument2& rCommand, const uno::Reference< ucb::XCommandEnvironment >& rxEnv ) : ResultSetImplHelper( rxSMgr, rCommand ), m_xContent( rxContent ), m_xEnv( rxEnv ) { } //========================================================================= // // Non-interface methods. // //========================================================================= void DynamicResultSet::initStatic() { m_xResultSet1 = new ::ucbhelper::ResultSet( m_xSMgr, m_aCommand.Properties, new DataSupplier( m_xSMgr, m_xContent, m_aCommand.Mode ), m_xEnv ); } //========================================================================= void DynamicResultSet::initDynamic() { m_xResultSet1 = new ::ucbhelper::ResultSet( m_xSMgr, m_aCommand.Properties, new DataSupplier( m_xSMgr, m_xContent, m_aCommand.Mode ), m_xEnv ); m_xResultSet2 = m_xResultSet1; } /collabora/cp-6.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/README.Android
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-01-20 17:18:35 +0000
committerMichael Meeks <michael.meeks@suse.com>2012-01-20 17:21:37 +0000
commitdb9ca8ec1076bc812bfa5c1fb353feadf77d74ff (patch)
treedd800f03c06ea62f0491d1360669f02dc8309ccb /README.Android
parent4e0928278df9e327dac9ac4d0ebf40bf04ef8dd9 (diff)
android: better readme / docs.