예제 #1
0
파일: Meta.java 프로젝트: aemay2/hapi-fhir
 public boolean hasTag() {
   if (this.tag == null) return false;
   for (Coding item : this.tag) if (!item.isEmpty()) return true;
   return false;
 }
예제 #2
0
파일: Meta.java 프로젝트: aemay2/hapi-fhir
 public boolean hasSecurity() {
   if (this.security == null) return false;
   for (Coding item : this.security) if (!item.isEmpty()) return true;
   return false;
 }