コード例 #1
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public Annotation(string id, Body body, Target target)
 {
     this.id = id;
     this.type = "oa:Annotation";
     this.body = body;
     this.target = target;
 }
コード例 #2
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public Annotation(Body body, Target target)
 {
     this.id = Guid.NewGuid().ToString();
     this.type = "oa:Annotation";
     this.body = body;
     this.target = target;
 }
コード例 #3
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public TestAnnotation(string id, TestBody body, Target target)
     : base(id, body, target)
 {
 }
コード例 #4
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public TestAnnotation(TestBody body, Target target)
     : base(body, target)
 {
 }
コード例 #5
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public CoverageAnnotation(string id, CoverageBody body, Target target)
     : base(id, body, target)
 {
 }
コード例 #6
0
ファイル: Annotation.cs プロジェクト: DHBrett/Graffiti
 public CoverageAnnotation(CoverageBody body, Target target)
     : base(body, target)
 {
 }