Clover Coverage Report
Coverage timestamp: Fri Feb 14 2014 01:49:02 UTC
../../../../../../img/srcFileCovDistChart9.png 21% of files have more coverage
19   99   11   3.8
12   47   0.58   5
5     2.2  
1    
 
  SpecificationHandler       Line # 32 19 11 88.9% 0.8888889
 
  (4)
 
1    /* This file is part of the project "Hilbert II" - http://www.qedeq.org
2    *
3    * Copyright 2000-2014, Michael Meyling <mime@qedeq.org>.
4    *
5    * "Hilbert II" is free software; you can redistribute
6    * it and/or modify it under the terms of the GNU General Public
7    * License as published by the Free Software Foundation; either
8    * version 2 of the License, or (at your option) any later version.
9    *
10    * This program 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
13    * GNU General Public License for more details.
14    */
15   
16    package org.qedeq.kernel.xml.handler.module;
17   
18    import org.qedeq.kernel.se.dto.module.LocationListVo;
19    import org.qedeq.kernel.se.dto.module.LocationVo;
20    import org.qedeq.kernel.se.dto.module.SpecificationVo;
21    import org.qedeq.kernel.xml.common.XmlSyntaxException;
22    import org.qedeq.kernel.xml.handler.common.AbstractSimpleHandler;
23    import org.qedeq.kernel.xml.handler.common.SimpleAttributes;
24   
25   
26    /**
27    * Parse specification informations.
28    *
29    * @version $Revision: 1.1 $
30    * @author Michael Meyling
31    */
 
32    public class SpecificationHandler extends AbstractSimpleHandler {
33   
34    /** Specification value object. */
35    private SpecificationVo specification;
36   
37    /** Module name. */
38    private String moduleName;
39   
40    /** Rule version which is at least needed to verify this module. */
41    private String ruleVersion;
42   
43    /** List of locations for module. */
44    private LocationListVo locations;
45   
46   
47    /**
48    * Constructor.
49    *
50    * @param handler Parent handler.
51    */
 
52  441 toggle public SpecificationHandler(final AbstractSimpleHandler handler) {
53  441 super(handler, "SPECIFICATION");
54    }
55   
 
56  311 toggle public final void init() {
57  311 specification = null;
58  311 moduleName = null;
59  311 ruleVersion = null;
60  311 locations = null;
61    }
62   
63    /**
64    * Get specification.
65    *
66    * @return Module specification.
67    */
 
68  311 toggle public final SpecificationVo getSpecification() {
69  311 return specification;
70    }
71   
 
72  979 toggle public final void startElement(final String name, final SimpleAttributes attributes)
73    throws XmlSyntaxException {
74  979 if (getStartTag().equals(name)) {
75  311 locations = new LocationListVo();
76  311 moduleName = attributes.getString("name");
77  311 ruleVersion = attributes.getString("ruleVersion");
78  668 } else if ("LOCATIONS".equals(name)) {
79    // ignore
80  357 } else if ("LOCATION".equals(name)) {
81  357 locations.add(new LocationVo(attributes.getString("value")));
82    } else {
83  0 throw XmlSyntaxException.createUnexpectedTagException(name);
84    }
85    }
86   
 
87  979 toggle public final void endElement(final String name) throws XmlSyntaxException {
88  979 if (getStartTag().equals(name)) {
89  311 specification = new SpecificationVo(moduleName, ruleVersion, locations);
90  668 } else if ("LOCATIONS".equals(name)) {
91    // ignore
92  357 } else if ("LOCATION".equals(name)) {
93    // ignore
94    } else {
95  0 throw XmlSyntaxException.createUnexpectedTagException(name);
96    }
97    }
98   
99    }