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 public SubComponent() {
14 }
15
16 public List<Object> getChildrenAsList() {
17 return Collections.emptyList();
18 }
19
20 }