LCOV - code coverage report
Current view: top level - chart2/source/model/template - BarChartType.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 1 23 4.3 %
Date: 2014-04-11 Functions: 1 12 8.3 %
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             : #include "BarChartType.hxx"
      21             : #include "macros.hxx"
      22             : #include "servicenames_charttypes.hxx"
      23             : 
      24             : using namespace ::com::sun::star;
      25             : 
      26             : namespace chart
      27             : {
      28             : 
      29           0 : BarChartType::BarChartType(
      30             :     const uno::Reference< uno::XComponentContext > & xContext ) :
      31           0 :         ChartType( xContext )
      32           0 : {}
      33             : 
      34           0 : BarChartType::BarChartType( const BarChartType & rOther ) :
      35           0 :         ChartType( rOther )
      36             : {
      37           0 : }
      38             : 
      39           0 : BarChartType::~BarChartType()
      40           0 : {}
      41             : 
      42             : // ____ XCloneable ____
      43           0 : uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone()
      44             :     throw (uno::RuntimeException, std::exception)
      45             : {
      46           0 :     return uno::Reference< util::XCloneable >( new BarChartType( *this ));
      47             : }
      48             : 
      49             : // ____ XChartType ____
      50           0 : OUString SAL_CALL BarChartType::getChartType()
      51             :     throw (uno::RuntimeException, std::exception)
      52             : {
      53           0 :     return CHART2_SERVICE_NAME_CHARTTYPE_BAR;
      54             : }
      55             : 
      56           0 : uno::Sequence< OUString > BarChartType::getSupportedPropertyRoles()
      57             :     throw (uno::RuntimeException, std::exception)
      58             : {
      59           0 :     uno::Sequence< OUString > aPropRoles(2);
      60           0 :     aPropRoles[0] = "FillColor";
      61           0 :     aPropRoles[1] = "BorderColor";
      62             : 
      63           0 :     return aPropRoles;
      64             : }
      65             : 
      66           0 : uno::Sequence< OUString > BarChartType::getSupportedServiceNames_Static()
      67             : {
      68           0 :     uno::Sequence< OUString > aServices( 2 );
      69           0 :     aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_BAR;
      70           0 :     aServices[ 1 ] = "com.sun.star.chart2.ChartType";
      71           0 :     return aServices;
      72             : }
      73             : 
      74             : // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
      75         107 : APPHELPER_XSERVICEINFO_IMPL( BarChartType,
      76             :                              OUString("com.sun.star.comp.chart.BarChartType") );
      77             : 
      78             : } //  namespace chart
      79             : 
      80             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10