Clover Coverage Report - XWiki Rendering - Parent POM 4.0-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Mar 12 2012 18:03:13 CET
../../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
7   66   4   3.5
2   30   0.57   2
2     2  
1    
 
  XWiki20ResourceReferenceTypeSerializer       Line # 42 7 0% 4 0 100% 1.0
 
  (36)
 
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 org.xwiki.rendering.internal.renderer.xwiki20.reference;
21   
22    import javax.inject.Named;
23    import javax.inject.Singleton;
24   
25    import org.xwiki.component.annotation.Component;
26    import org.xwiki.rendering.internal.parser.reference.DefaultResourceReferenceParser;
27    import org.xwiki.rendering.internal.parser.xwiki20.XWiki20LinkReferenceParser;
28    import org.xwiki.rendering.listener.reference.ResourceReference;
29    import org.xwiki.rendering.listener.reference.ResourceType;
30    import org.xwiki.rendering.renderer.reference.ResourceReferenceTypeSerializer;
31   
32    /**
33    * Serialize a link by outputting the link type (if the link is typed) followed by the link reference (ie
34    * "(linktype):(reference)").
35    *
36    * @version $Id: 42f15db0775ca9a48823e93ed89132ab5fb57c1c $
37    * @since 3.1
38    */
39    @Component
40    @Named("xwiki/2.0")
41    @Singleton
 
42    public class XWiki20ResourceReferenceTypeSerializer implements ResourceReferenceTypeSerializer
43    {
 
44  75 toggle @Override
45    public String serialize(ResourceReference reference)
46    {
47  75 StringBuffer result = new StringBuffer();
48  75 if (reference.isTyped() && isSupportedType(reference.getType())) {
49  9 result.append(reference.getType().getScheme());
50  9 result.append(DefaultResourceReferenceParser.TYPE_SEPARATOR);
51    }
52  75 result.append(reference.getReference());
53  75 return result.toString();
54    }
55   
56    /**
57    * Indicate if the provided type is supported by this syntax.
58    *
59    * @param type the type of resource
60    * @return true if the type is supported
61    */
 
62  14 toggle protected boolean isSupportedType(ResourceType type)
63    {
64  14 return XWiki20LinkReferenceParser.URI_PREFIXES.contains(type.getScheme());
65    }
66    }