1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rendering.internal.parser.reference

File ResourceReferenceConverter.java

 

Coverage histogram

../../../../../../img/srcFileCovDistChart8.png
54% of files have more coverage

Code metrics

2
5
2
1
67
30
3
0.6
2.5
2
1.5

Classes

Class Line # Actions
ResourceReferenceConverter 43 5 0% 3 2
0.777777877.8%
 

Contributing tests

This file is covered by 5 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 org.xwiki.rendering.internal.parser.reference;
21   
22    import java.lang.reflect.Type;
23   
24    import javax.inject.Inject;
25    import javax.inject.Singleton;
26   
27    import org.xwiki.component.annotation.Component;
28    import org.xwiki.properties.converter.AbstractConverter;
29    import org.xwiki.properties.converter.ConversionException;
30    import org.xwiki.rendering.listener.reference.ResourceReference;
31    import org.xwiki.rendering.parser.ResourceReferenceParser;
32   
33    /**
34    * XWiki Properties Bean Converter to convert Strings into
35    * {@link org.xwiki.rendering.listener.reference.ResourceReference}.
36    *
37    * @version $Id: 86304bdc8311dc199914fa5d669f9b5de40d24fb $
38    * @since 5.2M1
39    * @see org.xwiki.properties.converter.Converter
40    */
41    @Component
42    @Singleton
 
43    public class ResourceReferenceConverter extends AbstractConverter<ResourceReference>
44    {
45    /**
46    * Used to convert Resource References from String to ResourceReference object.
47    */
48    @Inject
49    private ResourceReferenceParser referenceParser;
50   
 
51  5 toggle @Override
52    protected <G extends ResourceReference> G convertToType(Type targetType, Object value)
53    {
54  5 G reference = null;
55  5 if (value != null) {
56  4 reference = (G) this.referenceParser.parse(value.toString());
57    }
58   
59  5 return reference;
60    }
61   
 
62  0 toggle @Override
63    protected String convertToString(ResourceReference value)
64    {
65  0 throw new ConversionException("not implemented yet");
66    }
67    }