예제 #1
0
 public String getDescription(String key, String version) {
   if (key != null && !key.equals("")) {
     try {
       return elementDictionary.nameOf(Integer.decode("0x" + key).intValue());
     } catch (NumberFormatException e) {
       return "";
     }
   }
   return "";
 }
예제 #2
0
 private DICOMReference() {
   elementDictionary = ElementDictionary.getDictionary();
 }