Breakpoint Info

by Peter Hendler

To show when a datatype is being added to the RIM graph during message parsing use CEimpl constructor.

  • XMLIts lookupMetadataByTag line 39

to stop just after message parsing is done use DemoDriver? line 256 if(useGui_)

To demonstrate when a datatype is being read out to message during message building use CEimpl 79 to 84

  public ST code() { return this._primary.code(); }
  public ST displayName() { return this._primary.displayName(); }
  public UID codeSystem() { return this._primary.codeSystem(); }
  public ST codeSystemName() { return this._primary.codeSystemName(); }
  public ST codeSystemVersion() { return this._primary.codeSystemVersion(); }
  public ED originalText() { return this._primary.originalText(); }

any one of the above will be fine.

Other interesting points

RimUtil line 46 the add() method where the "result" is added to the growing RIM graph This happens during message parsing.

XMLSpeaker addAttribute line 274 where attribute read from RIM graph will be added to outgoing message.

  • XMLSpeaker endElement line 244
  • JavaItsimpl getFeatureGetter line 216
  • JavaItsimpl getDatatypeInterface line 147