TextMark constructor

TextMark(
  1. int offset,
  2. Coordinates coordinates,
  3. String report
)

Creates a TextMark with the specified offset, coordinates, and report.

Parameters

  • IN offset The timestamp of the text mark within the log.
  • IN coordinates The geographical coordinates where the text mark was recorded.
  • IN report A textual note or annotation associated with the mark.

Implementation

TextMark(this.offset, this.coordinates, this.report);