protected String getLinkedForm(Coding c) {
   if (c.hasSystem()) {
     if (c.getSystem().equals("http://loinc.org")) {
       prefixes.put("loinc", "http://loinc.org/");
       return "loinc:" + c.getCode();
     }
   }
   return null;
 }