public EdfPlusAnnotationDataBlock(EdfPlusAnnotationListBase owner, int dataRecNr, double dataRecOnset)
 {
     _owner = owner;
       _dataRecNr = dataRecNr;
       _dataRecOnset = dataRecOnset;
       _modified = false;
 }
 public EdfPlusAnnotation(
     EdfPlusAnnotationListBase owner, int dataRecNr, double onset, double duration, string annotation, int annotationSignalNr)
 {
     FileOrder = -1;
       _owner = owner;
       DataRecNr = dataRecNr;
       _onset = onset;
       _duration = duration;
       _annotation = annotation;
       _annotationSignalNr = annotationSignalNr;
       Modified = false;
 }
 public EdfPlusAnnotation(
     EdfPlusAnnotationListBase owner, int dataRecNr, double onset, string annotation, int annotationSignalNr)
     : this(owner, dataRecNr, onset, 0, annotation, annotationSignalNr)
 {
 }
 public EdfPlusAnnotation(EdfPlusAnnotationListBase owner, int dataRecNr, double onset, string annotation)
     : this(owner, dataRecNr, onset, annotation, 0)
 {
 }
 public EdfPlusAnnotation(EdfPlusAnnotationListBase owner)
     : this(owner, 0, 0, string.Empty, -1)
 {
 }