Beispiel #1
0
 public Annotation(string id, Body body, Target target)
 {
     this.id = id;
     this.type = "oa:Annotation";
     this.body = body;
     this.target = target;
 }
Beispiel #2
0
 public Annotation(Body body, Target target)
 {
     this.id = Guid.NewGuid().ToString();
     this.type = "oa:Annotation";
     this.body = body;
     this.target = target;
 }
Beispiel #3
0
 public TestAnnotation(string id, TestBody body, Target target)
     : base(id, body, target)
 {
 }
Beispiel #4
0
 public TestAnnotation(TestBody body, Target target)
     : base(body, target)
 {
 }
Beispiel #5
0
 public CoverageAnnotation(string id, CoverageBody body, Target target)
     : base(id, body, target)
 {
 }
Beispiel #6
0
 public CoverageAnnotation(CoverageBody body, Target target)
     : base(body, target)
 {
 }