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

ca.uhn.hl7v2.hoh.api.ISendable Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
package ca.uhn.hl7v2.hoh.api;

import java.io.IOException;
import java.io.Writer;

import ca.uhn.hl7v2.hoh.encoder.EncodingStyle;

public interface ISendable {

	void writeMessage(Writer theWriter) throws IOException;
	
	EncodingStyle getEncodingStyle();

	T getMessage();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy