示例#1
0
  public Attributes toPatientIDWithIssuer(Attributes attrs) {
    if (attrs == null) attrs = new Attributes(3);

    attrs.setString(Tag.PatientID, VR.LO, id);
    if (getIssuer() == null) return attrs;

    return getIssuer().toIssuerOfPatientID(attrs);
  }