コード例 #1
0
ファイル: SecurityEvent.java プロジェクト: jmandel/fhir-lib
 public SecurityEventObjectDetailComponent copy(SecurityEvent e) {
   SecurityEventObjectDetailComponent dst = e.new SecurityEventObjectDetailComponent();
   dst.type = type == null ? null : type.copy();
   dst.value = value == null ? null : value.copy();
   return dst;
 }