| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SubComponent |
|
| 1.0;1 |
| 1 | package ca.uhn.hl7v2.conf.spec.message; | |
| 2 | ||
| 3 | import java.util.Collections; | |
| 4 | import java.util.List; | |
| 5 | ||
| 6 | /** | |
| 7 | * The specification for a particular field sub-component in a message profile. | |
| 8 | * @author Bryan Tripp | |
| 9 | */ | |
| 10 | public class SubComponent extends AbstractComponent<SubComponent> { | |
| 11 | ||
| 12 | /** Creates a new instance of SubComponent */ | |
| 13 | 21770 | public SubComponent() { |
| 14 | 21770 | } |
| 15 | ||
| 16 | public List<Object> getChildrenAsList() { | |
| 17 | 0 | return Collections.emptyList(); |
| 18 | } | |
| 19 | ||
| 20 | } |