public static String getVersionPackagePath(String ver) throws HL7Exception {
Version v = Version.versionOf(ver);
if (v == null) {
throw new HL7Exception("The HL7 version " + ver + " is unknown", ErrorCode.UNSUPPORTED_VERSION_ID);
}
String pkg = v.modelPackageName();
return pkg.replace('.', '/');
}
/**
* Returns the package name for model elements of the given version - e.g.