コード例 #1
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonFeature(jsonListener Aparent,
                     tsContentTo doc) : base(Aparent) 
 {
     fe = new tsFeature(doc);
     fIsGeometry = false;
     fIsRelations = false;
     fgeometry = new Geometry(1, 0, "");
     frelation = new Relation("", "","");
 }
コード例 #2
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonContent(jsonListener Aparent,
                    tsContentTo Adoc) : base(Aparent)
 {
     fData = new jsonData(this,Adoc);
     fdoc = Adoc;
 }
コード例 #3
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonPolygon(jsonListener Aparent,
                     tsContentTo doc)
     : base(Aparent)
 {
     s = new tsPolygon(doc);
 }
コード例 #4
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonObject(jsonListener Aparent)
 {
     fparent = Aparent;
 }
コード例 #5
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonPolyline(jsonListener Aparent,
                     tsContentTo doc) : base(Aparent) 
 {
     c = new tsPolyline(doc);
 }
コード例 #6
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonPoint(jsonListener Aparent,
                  tsContentTo doc) : base(Aparent) 
 {
     p = new tsPoint(doc);
 }
コード例 #7
0
ファイル: tsContent.cs プロジェクト: emm274/fcObj
 public jsonData(jsonListener Aparent,
                 tsContentTo doc) : base(Aparent)
 {
     fPoint = new jsonPoint(this, doc);
     fPolyline = new jsonPolyline(this, doc);
     fPolygon = new jsonPolygon(this, doc);
     fFeature = new jsonFeature(this, doc);
 }