| 1 |
|
package org.kuali.student.common.dictionary.service.jaxws; |
| 2 |
|
|
| 3 |
|
import java.util.ArrayList; |
| 4 |
|
import java.util.List; |
| 5 |
|
|
| 6 |
|
import javax.xml.bind.annotation.XmlAccessType; |
| 7 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
| 8 |
|
|
| 9 |
|
import org.kuali.student.common.dictionary.dto.ObjectStructureDefinition; |
| 10 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 5 |
Complexity Density: 0.83 |
|
| 11 |
|
public class ObjectStructureDefinitionWrapper { |
| 12 |
|
private String rootDefinitionName; |
| 13 |
|
private List<ObjectStructureDefinition> definitions; |
| 14 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 15 |
0
|
public List<ObjectStructureDefinition> getDefinitions() {... |
| 16 |
0
|
if(definitions == null){ |
| 17 |
0
|
definitions = new ArrayList<ObjectStructureDefinition>(); |
| 18 |
|
} |
| 19 |
|
|
| 20 |
0
|
return definitions; |
| 21 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 22 |
0
|
public void setDefinitions(List<ObjectStructureDefinition> definitions) {... |
| 23 |
0
|
this.definitions = definitions; |
| 24 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 25 |
0
|
public String getRootDefinitionName() {... |
| 26 |
0
|
return rootDefinitionName; |
| 27 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 28 |
0
|
public void setRootDefinitionName(String rootDefinitionName) {... |
| 29 |
0
|
this.rootDefinitionName = rootDefinitionName; |
| 30 |
|
} |
| 31 |
|
|
| 32 |
|
} |