LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/chart2/source/tools - DataSource.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 20 20 100.0 %
Date: 2013-07-09 Functions: 10 13 76.9 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include "DataSource.hxx"
      22             : #include "LabeledDataSequence.hxx"
      23             : 
      24             : using ::osl::MutexGuard;
      25             : using ::com::sun::star::uno::Sequence;
      26             : using ::com::sun::star::uno::Reference;
      27             : using ::com::sun::star::uno::RuntimeException;
      28             : using ::com::sun::star::uno::Any;
      29             : 
      30             : using namespace ::com::sun::star;
      31             : 
      32             : namespace
      33             : {
      34          11 : static const OUString lcl_aServiceName( "com.sun.star.comp.chart.DataSource" );
      35             : }  // anonymous namespace
      36             : 
      37             : namespace chart
      38             : {
      39             : 
      40          17 : DataSource::DataSource(
      41          17 :     const Reference< uno::XComponentContext > & /*xContext*/ )
      42          17 : {}
      43             : 
      44        3157 : DataSource::DataSource(
      45             :     const Sequence< Reference< chart2::data::XLabeledDataSequence > > & rSequences ) :
      46        3157 :         m_aDataSeq( rSequences )
      47        3157 : {}
      48             : 
      49        6348 : DataSource::~DataSource()
      50        6348 : {}
      51             : 
      52             : // ____ XDataSource ____
      53        3314 : Sequence< Reference< chart2::data::XLabeledDataSequence > > SAL_CALL DataSource::getDataSequences()
      54             :     throw (uno::RuntimeException)
      55             : {
      56        3314 :     return m_aDataSeq;
      57             : }
      58             : 
      59             : // ____ XDataSink ____
      60          17 : void SAL_CALL DataSource::setData( const Sequence< Reference< chart2::data::XLabeledDataSequence > >& aData )
      61             :     throw (uno::RuntimeException)
      62             : {
      63          17 :     m_aDataSeq = aData;
      64          17 : }
      65             : 
      66             : // ================================================================================
      67             : 
      68           4 : Sequence< OUString > DataSource::getSupportedServiceNames_Static()
      69             : {
      70           4 :     Sequence< OUString > aServices( 1 );
      71           4 :     aServices[ 0 ] = "com.sun.star.chart2.data.DataSource";
      72           4 :     return aServices;
      73             : }
      74             : 
      75             : // ================================================================================
      76             : 
      77          25 : APPHELPER_XSERVICEINFO_IMPL( DataSource, lcl_aServiceName );
      78             : 
      79          33 : } // namespace chart
      80             : 
      81             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10