Clover Coverage Report
Coverage timestamp: Fri May 24 2013 13:47:27 UTC
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
21   131   17   1.75
10   63   0.81   12
12     1.42  
1    
 
  SectionVo       Line # 29 21 17 100% 1.0
 
  (103)
 
1    /* This file is part of the project "Hilbert II" - http://www.qedeq.org
2    *
3    * Copyright 2000-2013, 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.se.dto.module;
17   
18    import org.qedeq.base.utility.EqualsUtility;
19    import org.qedeq.kernel.se.base.module.LatexList;
20    import org.qedeq.kernel.se.base.module.Section;
21    import org.qedeq.kernel.se.base.module.SubsectionList;
22   
23   
24    /**
25    * Section of a QEDEQ file.
26    *
27    * @author Michael Meyling
28    */
 
29    public class SectionVo implements Section {
30   
31    /** No section number. */
32    private Boolean noNumber;
33   
34    /** Section title. */
35    private LatexList title;
36   
37    /** Section introduction. */
38    private LatexList introduction;
39   
40    /** All subsections of this section.*/
41    private SubsectionList subsectionList;
42   
43    /**
44    * Constructs a new section.
45    */
 
46  9774 toggle public SectionVo() {
47    // nothing to do
48    }
49   
50    /**
51    * Set no auto numbering for this section.
52    *
53    * @param noNumber Should this section be not numbered?
54    */
 
55  4871 toggle public final void setNoNumber(final Boolean noNumber) {
56  4871 this.noNumber = noNumber;
57    }
58   
 
59  205443 toggle public final Boolean getNoNumber() {
60  205443 return noNumber;
61    }
62   
63    /**
64    * Set section title.
65    *
66    * @param title Section title.
67    */
 
68  9634 toggle public final void setTitle(final LatexListVo title) {
69  9634 this.title = title;
70    }
71   
 
72  810119 toggle public final LatexList getTitle() {
73  810119 return title;
74    }
75   
76    /**
77    * Set LaTeX introduction text.
78    *
79    * @param introduction Introduction text.
80    */
 
81  9613 toggle public final void setIntroduction(final LatexListVo introduction) {
82  9613 this.introduction = introduction;
83    }
84   
 
85  410275 toggle public final LatexList getIntroduction() {
86  410275 return introduction;
87    }
88   
89    /**
90    * Set list of subsections of this section.
91    *
92    * @param subsections List of subsections.
93    */
 
94  6461 toggle public final void setSubsectionList(final SubsectionListVo subsections) {
95  6461 this.subsectionList = subsections;
96    }
97   
 
98  1586861 toggle public final SubsectionList getSubsectionList() {
99  1586861 return subsectionList;
100    }
101   
 
102  165 toggle public boolean equals(final Object obj) {
103  165 if (!(obj instanceof SectionVo)) {
104  8 return false;
105    }
106  157 final SectionVo other = (SectionVo) obj;
107  157 return EqualsUtility.equals(getNoNumber(), other.getNoNumber())
108    && EqualsUtility.equals(getTitle(), other.getTitle())
109    && EqualsUtility.equals(getIntroduction(), other.getIntroduction())
110    && EqualsUtility.equals(getSubsectionList(), other.getSubsectionList());
111    }
112   
 
113  212 toggle public int hashCode() {
114  212 return (getNoNumber() != null ? getNoNumber().hashCode() : 0)
115  212 ^ (getTitle() != null ? 1 ^ getTitle().hashCode() : 0)
116  212 ^ (getIntroduction() != null ? 2 ^ getIntroduction().hashCode() : 0)
117  212 ^ (getSubsectionList() != null ? 3 ^ getSubsectionList().hashCode() : 0);
118    }
119   
 
120  172 toggle public String toString() {
121  172 final StringBuffer buffer = new StringBuffer();
122  172 buffer.append("Section noNumbering: " + noNumber + "\n");
123  172 buffer.append("Section Title: \n");
124  172 buffer.append(getTitle() + "\n\n");
125  172 buffer.append("Introduction: ");
126  172 buffer.append(getIntroduction() + "\n\n");
127  172 buffer.append(getSubsectionList() + "\n");
128  172 return buffer.toString();
129    }
130   
131    }