Documentation: wrong Java Example for writing a Tag into a DataSet

Issue #127 closed
Paolo Brandoli repo owner created an issue

The Java example that set the patient name into the dataSet contains a syntax error:

This:

dataSet.setString(TagId(0x10, 0x10), "Patient^Name");

Should be:

dataSet.setString(new com.imebra.TagId(0x10, 0x10), "Patient^Name");

Comments (4)

  1. Log in to comment