Clover Coverage Report - KS Common 1.2.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Nov 2 2011 04:55:08 EST
../../../../../../../../img/srcFileCovDistChart0.png 29% of files have more coverage
33   125   16   2.54
4   70   0.48   13
13     1.23  
1    
 
  SectionTitle       Line # 29 33 0% 16 50 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.common.ui.client.configurable.mvc;
17   
18    import com.google.gwt.dom.client.Element;
19    import com.google.gwt.user.client.DOM;
20    import com.google.gwt.user.client.ui.ComplexPanel;
21    import com.google.gwt.user.client.ui.Widget;
22   
23    /**
24    * This class provides static methods for generating H1-H6 elements with the passed in text
25    *
26    * @author Kuali Student Team (kuali-student@googlegroups.com)
27    *
28    */
 
29    public class SectionTitle extends ComplexPanel {
30   
31    private String reportText;
32   
 
33  0 toggle private SectionTitle(Element e) {
34  0 this.setElement(e);
35    }
36   
 
37  0 toggle public static SectionTitle generateEmptyTitle() {
38  0 return generateTitle(DOM.createSpan(), null);
39    }
40   
 
41  0 toggle public static SectionTitle generateH1Title(String titletext) {
42   
43  0 Element headerElement = DOM.createElement("H1");
44  0 headerElement.setInnerText(titletext);
45  0 return generateTitle(headerElement, "KS-H1-Section-Title");
46    }
47   
 
48  0 toggle public static SectionTitle generateH2Title(String titletext) {
49   
50  0 Element headerElement = DOM.createElement("H2");
51  0 headerElement.setInnerText(titletext);
52  0 return generateTitle(headerElement, "KS-H2-Section-Title");
53    }
54   
 
55  0 toggle public static SectionTitle generateH3Title(String titletext) {
56   
57  0 Element headerElement = DOM.createElement("H3");
58  0 headerElement.setInnerText(titletext);
59  0 return generateTitle(headerElement, "KS-H3-Section-Title");
60    }
61   
 
62  0 toggle public static SectionTitle generateH4Title(String titletext) {
63   
64  0 Element headerElement = DOM.createElement("H4");
65  0 headerElement.setInnerText(titletext);
66  0 return generateTitle(headerElement, "KS-H4-Section-Title");
67    }
68   
 
69  0 toggle public static SectionTitle generateH5Title(String titletext) {
70   
71  0 Element headerElement = DOM.createElement("H5");
72  0 headerElement.setInnerText(titletext);
73  0 return generateTitle(headerElement, "KS-H5-Section-Title");
74    }
75   
 
76  0 toggle public static SectionTitle generateH6Title(String titletext) {
77   
78  0 Element headerElement = DOM.createElement("H6");
79  0 headerElement.setInnerText(titletext);
80  0 return generateTitle(headerElement, "KS-H6-Section-Title");
81    }
82   
 
83  0 toggle private static SectionTitle generateTitle(Element header, String styleName) {
84  0 SectionTitle thisTitle = new SectionTitle(header);
85  0 thisTitle.addStyleName("KS-Section-Title");
86  0 if(styleName != null){
87  0 thisTitle.addStyleName(styleName);
88    }
89  0 return thisTitle;
90    }
91   
 
92  0 toggle public void setText(String text){
93  0 this.getElement().setInnerText(text);
94  0 this.reportText = text;
95    }
96   
 
97  0 toggle public void setHTML(String html){
98  0 this.getElement().setInnerHTML(html);
99  0 this.reportText = html;
100    }
101   
102    /**
103    * Adds a new child widget to the panel.
104    *
105    * @param w the widget to be added
106    */
 
107  0 toggle @Override
108    public void add(Widget w) {
109  0 add(w, getElement());
110    }
111   
112    /**
113    * Returns a text value of the title for the export report.
114    *
115    * @return
116    */
 
117  0 toggle public String getExportFieldValue() {
118  0 if ((this.reportText != null) && (this.reportText.length() > 0)){
119  0 return this.reportText;
120    }
121  0 return this.getElement().getInnerText();
122    }
123    }
124   
125