All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.hl7v2.conf.spec.message.SubComponent Maven / Gradle / Ivy

package ca.uhn.hl7v2.conf.spec.message;

import java.util.Collections;
import java.util.List;

/**
 * The specification for a particular field sub-component in a message profile.  
 * @author Bryan Tripp
 */
public class SubComponent extends AbstractComponent {
    
    /** Creates a new instance of SubComponent */
    public SubComponent() {
    }
    
    public List getChildrenAsList() {
    	return Collections.emptyList();
    }
    
}