Using the DataTableThing.AddDataTableEntry in the Java Extension SDK
Dear Developers,
I am trying to use the method in the subject, but I am unable to. Checking the documentation, this is the signature:
public void UpdateDataTableEntry(TagCollection tags,
Location location,
java.lang.String source,
java.lang.String sourceType,
InfoTable values)
throws java.lang.Exception
And all the fields besides tags and values are optional. I am wondering what optional does mean in this case (null value?) as this is the only signature available. I have built the values like this, as an example:
InfoTable values = new InfoTable();
ValueCollection row = new ValueCollection();
row.SetIntegerValue("id", id);
values.addRow(row);
and I am not sure about what is the purpose of the tags in this case.
Thank you!

