Beispiel #1
0
 /**
  * Returns the first security label (if any) that has the given system and code, or returns <code>
  * null</code> if none
  */
 public Coding getSecurity(String theSystem, String theCode) {
   for (Coding next : getTag()) {
     if (ca.uhn.fhir.util.ObjectUtil.equals(next.getSystem(), theSystem)
         && ca.uhn.fhir.util.ObjectUtil.equals(next.getCode(), theCode)) {
       return next;
     }
   }
   return null;
 }