1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package com.xpn.xwiki.internal.skin

File WikiSkin.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
5
4
1
61
30
4
0.8
1.25
4
1

Classes

Class Line # Actions
WikiSkin 33 5 0% 4 0
1.0100%
 

Contributing tests

This file is covered by 15 tests. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package com.xpn.xwiki.internal.skin;
21   
22    import org.slf4j.Logger;
23    import org.xwiki.rendering.syntax.SyntaxFactory;
24    import org.xwiki.skin.Resource;
25    import org.xwiki.skin.Skin;
26   
27    /**
28    * Represents a skin stored in a wiki document.
29    *
30    * @version $Id: db0a1b8ed390e24ea2d8dc0d3246549436adc2c9 $
31    * @since 6.4M1
32    */
 
33    public class WikiSkin extends AbstractSkin
34    {
35    private WikiSkinUtils utils;
36   
 
37  166 toggle public WikiSkin(String id, InternalSkinManager skinManager, InternalSkinConfiguration configuration,
38    WikiSkinUtils utils, Logger logger, SyntaxFactory syntaxFactory)
39    {
40  166 super(id, skinManager, configuration, logger, syntaxFactory);
41  166 this.utils = utils;
42    }
43   
 
44  99 toggle @Override
45    protected Skin createParent()
46    {
47  99 return this.skinManager.getSkin(this.utils.getParentId(this.id));
48    }
49   
 
50  77 toggle @Override
51    public Resource<?> getLocalResource(String resourceName)
52    {
53  77 return this.utils.getResource(resourceName, this);
54    }
55   
 
56  25 toggle @Override
57    public String getOutputSyntaxString()
58    {
59  25 return utils.getSkinProperty(id, "outputSyntax");
60    }
61    }