1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.contract.writer.search; |
17 |
|
|
18 |
|
import org.kuali.student.contract.model.SearchCriteria; |
19 |
|
import org.kuali.student.contract.model.SearchCriteriaParameter; |
20 |
|
import org.kuali.student.contract.writer.XmlWriter; |
21 |
|
|
22 |
|
import java.io.PrintStream; |
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
@author |
27 |
|
|
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 3 |
Complexity Density: 0.16 |
|
28 |
|
public class SearchCriteriaWriter extends XmlWriter { |
29 |
|
|
30 |
|
private SearchCriteria searchCriteria; |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
32 |
0
|
public SearchCriteriaWriter(PrintStream out, int indent,... |
33 |
|
SearchCriteria searchCriteria) { |
34 |
0
|
super(out, indent); |
35 |
0
|
this.searchCriteria = searchCriteria; |
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 1 |
Complexity Density: 0.06 |
|
38 |
0
|
public void write() {... |
39 |
|
|
40 |
0
|
println(""); |
41 |
0
|
indentPrint("<search:searchCriteriaTypeInfo"); |
42 |
|
|
43 |
0
|
writeAttribute("id", searchCriteria.getKey()); |
44 |
0
|
println(">"); |
45 |
0
|
incrementIndent(); |
46 |
|
|
47 |
|
|
48 |
0
|
writeComment(searchCriteria.getComments()); |
49 |
|
|
50 |
0
|
writeTag("search:name", searchCriteria.getName()); |
51 |
0
|
writeTag("search:desc", searchCriteria.getDescription()); |
52 |
0
|
indentPrintln("<search:queryParams>"); |
53 |
0
|
incrementIndent(); |
54 |
0
|
for (SearchCriteriaParameter col : searchCriteria.getParameters()) { |
55 |
0
|
indentPrintln(calcRefBean(col.getKey())); |
56 |
|
} |
57 |
0
|
decrementIndent(); |
58 |
0
|
indentPrintln("</search:queryParams>"); |
59 |
|
|
60 |
0
|
indentPrintln("</search:searchCriteriaTypeInfo>"); |
61 |
0
|
decrementIndent(); |
62 |
|
} |
63 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
0
|
private String calcRefBean(String id) {... |
65 |
0
|
return "<ref bean=\"" + id + "\" />"; |
66 |
|
} |
67 |
|
} |