LCOV - code coverage report
Current view: top level - xmlhelp/source/cxxhelp/provider - resultset.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 9 13 69.2 %
Date: 2012-08-25 Functions: 4 5 80.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 5 14 35.7 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : #include <com/sun/star/sdbc/XResultSet.hpp>
      30                 :            : 
      31                 :            : #include "resultset.hxx"
      32                 :            : #include "resultsetfactory.hxx"
      33                 :            : 
      34                 :            : using namespace com::sun::star::lang;
      35                 :            : using namespace com::sun::star::sdbc;
      36                 :            : using namespace com::sun::star::ucb;
      37                 :            : using namespace com::sun::star::uno;
      38                 :            : 
      39                 :            : 
      40                 :            : using namespace chelp;
      41                 :            : 
      42                 :            : //=========================================================================
      43                 :            : //=========================================================================
      44                 :            : //
      45                 :            : // DynamicResultSet Implementation.
      46                 :            : //
      47                 :            : //=========================================================================
      48                 :            : //=========================================================================
      49                 :            : 
      50                 :         12 : DynamicResultSet::DynamicResultSet(
      51                 :            :     const Reference< XMultiServiceFactory >& rxSMgr,
      52                 :            :     const rtl::Reference< Content >& rxContent,
      53                 :            :     const OpenCommandArgument2& rCommand,
      54                 :            :     const Reference< XCommandEnvironment >& rxEnv,
      55                 :            :     ResultSetFactory* pFactory )
      56                 :            :     : ResultSetImplHelper( rxSMgr, rCommand ),
      57                 :            :       m_xContent( rxContent ),
      58                 :            :       m_xEnv( rxEnv ),
      59                 :         12 :       m_pFactory( pFactory )
      60                 :            : {
      61                 :         12 : }
      62                 :            : 
      63                 :         12 : DynamicResultSet::~DynamicResultSet()
      64                 :            : {
      65 [ +  - ][ +  - ]:         12 :     delete m_pFactory;
      66         [ -  + ]:         24 : }
      67                 :            : 
      68                 :            : //=========================================================================
      69                 :            : //
      70                 :            : // Non-interface methods.
      71                 :            : //
      72                 :            : //=========================================================================
      73                 :            : 
      74                 :         12 : void DynamicResultSet::initStatic()
      75                 :            : {
      76 [ +  - ][ +  - ]:         12 :     m_xResultSet1 = Reference< XResultSet >( m_pFactory->createResultSet() );
      77                 :         12 : }
      78                 :            : 
      79                 :            : //=========================================================================
      80                 :          0 : void DynamicResultSet::initDynamic()
      81                 :            : {
      82 [ #  # ][ #  # ]:          0 :     m_xResultSet1 = Reference< XResultSet >( m_pFactory->createResultSet() );
      83                 :            : 
      84                 :          0 :     m_xResultSet2 = m_xResultSet1;
      85                 :          0 : }
      86                 :            : 
      87                 :            : 
      88                 :            : 
      89                 :            : 
      90                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10