This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassifyXML.cs
executable file
·974 lines (833 loc) · 31 KB
/
ClassifyXML.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Serialization;
namespace MAB
{
public class Main
{
public void ReadVerses()
{
XmlSerializer serializer = new XmlSerializer(typeof(verses));
FileStream fsMABOT = new FileStream(
@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT.xml", FileMode.Open);
verses versesSerializer;
StreamWriter swMABOT = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out.xml");
StreamWriter swCKind = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out-CKind.xml");
StreamWriter swCTyp = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out-CTyp.xml");
StreamWriter swPd = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out-Pd.xml");
StreamWriter swPt = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out-Pt.xml");
StreamWriter swPu = new StreamWriter(@"Z:\BibleSearcher\Data\Data\Original\MAB\MAB-OT-out-Pu.xml");
List<string> lCKind = new();
List<string> lCTyp = new();
List<string> lPd = new();
List<string> lPt = new();
List<string> lPu = new();
versesSerializer = (verses)serializer.Deserialize(fsMABOT);
if (versesSerializer.verse != null) //.verse is a collection of verses
{
foreach (versesVerse vv in versesSerializer.verse)
{
//Items and ItemsElementName have the same number
//of elements, and they correspond with each other.
//Always check heb items for null, and note that
//hbint can contain square-bracketted notes besides
//the English translation (ie. "god [pl.]" and "[object marker]").
//NOTE: MAYBE ANTONYMS WILL BE USEFULL AS RICH CONNECTORS MAKING
////DEEPER TRUTH OBVIOUS (IE. INDIVIDUALITY VS.PERSONALITY)
string strVerseID = "";
string strCLDivClass = "";
string strCLDivDivClass = "";
string strCLDivDivID = "";
string strEnglishWord = "";
int intCCounter = 0;
List<int> lintCKind = new();
List<int> lintCTyp = new();
string strCKind = "";
string strCTyp = "";
List<int> lintBHPDiv = new();
string strWordParse = "";
string strCLDivDivDivID = "";
string strCLDivDivDivPFunction = "";
Dictionary<int, string> dCLDivDivDivPtypText = new();
string strCLDivDivDivPtypDet = "";
string strCLDivDivDivPtypUndet = "";
strVerseID = vv.vid.id;
swMABOT.Write(strVerseID);
foreach (versesVerseCL cl in vv.cl)
{
versesVerseCLDiv cldiv = cl.div;
strCLDivClass = cldiv.@class;
foreach (versesVerseCLDivDiv cldiv2 in cldiv.div) //chunks
{
strCLDivDivClass = cldiv2.@class;
strCLDivDivID = cldiv2.id;
//If strCLDivDivClass == cdesc, then look at Items with Names
//other than "ref". These Items give good information
//about the chunk, including ckind (ie. "Verbal clauses,")
//and ctyp (ie. "x-qatal-X clause")
if (strCLDivDivClass == "cdesc")
{
intCCounter = 0;
lintCKind.Clear();
lintCTyp.Clear();
swMABOT.Write(" ^ " + "c:" + strCLDivDivID);
foreach (ItemsChoiceType ict in cldiv2.ItemsElementName)
{
intCCounter++;
if (ict == ItemsChoiceType.ckind)
{
lintCKind.Add(intCCounter);
}
else if (ict == ItemsChoiceType.ctyp)
{
lintCTyp.Add(intCCounter);
}
}
intCCounter = 0;
strCKind = "";
strCTyp = "";
foreach (object oCLDivDivItems in cldiv2.Items)
{
intCCounter++;
if (lintCKind.Contains(intCCounter))
{
strCKind = oCLDivDivItems.ToString();
swMABOT.Write(" ^ " + "CKind:" + strCKind);
if (!lCKind.Contains(strCKind))
{
lCKind.Add(strCKind);
}
}
else if (lintCTyp.Contains(intCCounter))
{
strCTyp = oCLDivDivItems.ToString();
swMABOT.Write(" ^ " + "CTyp:" + strCTyp);
if (!lCTyp.Contains(strCTyp))
{
lCTyp.Add(strCTyp);
}
}
}
//write cdesc
}
//If strCLDivDivClass == bhp, then look at Items with Names of
//"div", which are of type versesVerseCLDivDivDiv.
else if (strCLDivDivClass == "bhp")
{
intCCounter = 0;
lintCKind.Clear();
lintCTyp.Clear();
lintBHPDiv.Clear();
foreach (ItemsChoiceType ict in cldiv2.ItemsElementName)
{
intCCounter++;
if (ict == ItemsChoiceType.div)
{
lintCKind.Add(intCCounter);
}
}
intCCounter = 0;
foreach (object oCLDivDivItems in cldiv2.Items)
{
intCCounter++;
if (lintCKind.Contains(intCCounter))
{
if (oCLDivDivItems.GetType() == typeof(versesVerseCLDivDivDiv))
{
//If cldiv2.Items[x].@class == bhw, then it's hbint is the
//English word and heb has a lot of fields about the Hebrew.
//Of particular note in heb (which is a collection of type
//versesVerseCLDivDivDivHeb), is the 5th comma-separated
//field of "onClick", which is the parse information for
//that Hebrew word.
if (((versesVerseCLDivDivDiv)oCLDivDivItems).@class == "bhw")
{
//After checking, it seems that only heb[0] exists, so:
versesVerseCLDivDivDivHeb oHeb = ((versesVerseCLDivDivDiv)oCLDivDivItems).heb[0];
int intStartIndex = oHeb.onclick.IndexOf('(');
int intEndIndex = oHeb.onclick.LastIndexOf(')');
string strOnclickPart = oHeb.onclick.Substring(intStartIndex, intEndIndex - intStartIndex);
string strWordID = oHeb.id;
strEnglishWord = ((versesVerseCLDivDivDiv)oCLDivDivItems).hbint;
strWordParse = strOnclickPart.Split(',')[4].Trim('\''); //the 5th element
swMABOT.Write(" ^ " + "w:" + strWordID);
//first split strEnglishWord on ',' to give multiple whole possible translations.
//then:
//if, upon splitting strEnglishWord, we find a split part that contains
//a '[' (which assumably contains ']' also), then if a '+' follows the ']'
//and if there is a next split part, then the word in brackets,
//though not part of the definition, adds to that next split part and refers
//to a previously seen word (such as a pronoun referring to a previous proper noun).
//'+[' works similarly, but adds to the previous word (split part), regardless of
//whether it is the first, last or other split part in strEnglishWord.
//NOTE: sometimes there is no + ?and/or? the whole strEnglishWord is bracketed
swMABOT.Write(" ^ " + "we:" + strEnglishWord);
swMABOT.Write(" ^ " + "wp:" + strWordParse);
//write bhw
}
//If it's .@class is "pdesc", then look at pFunction
//(ie. Time reference) and pTyp, which is of type
//versesVerseCLDivDivDivPtyp and has a det, undet and text,
//at least one of which should have a phrase type
//(ie. Prepositional phrase).
else if (((versesVerseCLDivDivDiv)oCLDivDivItems).@class == "pdesc")
{
//strid, strpfunction, optyp:.det, .undet, .Text
strCLDivDivDivID = ((versesVerseCLDivDivDiv)oCLDivDivItems).id;
strCLDivDivDivPFunction = ((versesVerseCLDivDivDiv)oCLDivDivItems).pfunction;
swMABOT.Write(" ^ " + "p:" + strCLDivDivDivID);
if (((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.Text != null)
{
foreach (string strText in ((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.Text)
{
dCLDivDivDivPtypText.Add(dCLDivDivDivPtypText.Count + 1, strText);
swMABOT.Write(" ^ " + "pt:" + strText);
if (!lPt.Contains(strText))
{
lPt.Add(strText);
}
}
}
if (((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.det != null)
{
strCLDivDivDivPtypDet = ((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.det;
swMABOT.Write(" ^ " + "pd:" + strCLDivDivDivPtypDet);
if (!lPd.Contains(strCLDivDivDivPtypDet))
{
lPd.Add(strCLDivDivDivPtypDet);
}
}
if (((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.undet != null)
{
strCLDivDivDivPtypUndet = ((versesVerseCLDivDivDiv)oCLDivDivItems).ptyp.undet;
swMABOT.Write(" ^ " + "pu:" + strCLDivDivDivPtypUndet);
if (!lPu.Contains(strCLDivDivDivPtypUndet))
{
lPu.Add(strCLDivDivDivPtypUndet);
}
}
//write pdesc
}
}
}
}
swMABOT.WriteLine();
//write bhp
}
}
}
}
}
swMABOT.Close();
foreach (string strLine in lCKind.OrderBy(a => a))
{
swCKind.WriteLine(strLine);
}
swCKind.Close();
foreach (string strLine in lCTyp.OrderBy(a => a))
{
swCTyp.WriteLine(strLine);
}
swCTyp.Close();
foreach (string strLine in lPd.OrderBy(a => a))
{
swPd.WriteLine(strLine);
}
swPd.Close();
foreach (string strLine in lPt.OrderBy(a => a))
{
swPt.WriteLine(strLine);
}
swPt.Close();
foreach (string strLine in lPu.OrderBy(a => a))
{
swPu.WriteLine(strLine);
}
swPu.Close();
}
}
// NOTE: Generated code may require at least .NET Framework 4.5 or .NET Core/Standard 2.0.
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class verses
{
private versesVerse[] verseField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("verse")]
public versesVerse[] verse
{
get
{
return this.verseField;
}
set
{
this.verseField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerse
{
private versesVerseVid vidField;
private versesVerseCL[] clField;
/// <remarks/>
public versesVerseVid vid
{
get
{
return this.vidField;
}
set
{
this.vidField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("cl")]
public versesVerseCL[] cl
{
get
{
return this.clField;
}
set
{
this.clField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseVid
{
private string idField;
private string onclickField;
private byte valueField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string onclick
{
get
{
return this.onclickField;
}
set
{
this.onclickField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public byte Value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCL
{
private versesVerseCLDiv divField;
/// <remarks/>
public versesVerseCLDiv div
{
get
{
return this.divField;
}
set
{
this.divField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDiv
{
private versesVerseCLDivDiv[] divField;
private string classField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("div")]
public versesVerseCLDivDiv[] div
{
get
{
return this.divField;
}
set
{
this.divField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @class
{
get
{
return this.classField;
}
set
{
this.classField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDivDiv
{
private object[] itemsField;
private ItemsChoiceType[] itemsElementNameField;
private string[] textField;
private string idField;
private string classField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("ckind", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("connector", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("crela", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("ctyp", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("div", typeof(versesVerseCLDivDivDiv))]
[System.Xml.Serialization.XmlElementAttribute("heb", typeof(object))]
[System.Xml.Serialization.XmlElementAttribute("ref", typeof(versesVerseCLDivDivRef))]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")]
public object[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("ItemsElementName")]
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemsChoiceType[] ItemsElementName
{
get
{
return this.itemsElementNameField;
}
set
{
this.itemsElementNameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string[] Text
{
get
{
return this.textField;
}
set
{
this.textField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @class
{
get
{
return this.classField;
}
set
{
this.classField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDivDivRef
{
private string mclidField;
private string clidField;
private string[] textField;
private string onclickField;
/// <remarks/>
public string mclid
{
get
{
return this.mclidField;
}
set
{
this.mclidField = value;
}
}
/// <remarks/>
public string clid
{
get
{
return this.clidField;
}
set
{
this.clidField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string[] Text
{
get
{
return this.textField;
}
set
{
this.textField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string onclick
{
get
{
return this.onclickField;
}
set
{
this.onclickField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDivDivDiv
{
private versesVerseCLDivDivDivHeb[] hebField;
private string hbintField;
private versesVerseCLDivDivDivPtyp ptypField;
private string prelaField;
private string pfunctionField;
private string idField;
private string classField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("heb")]
public versesVerseCLDivDivDivHeb[] heb
{
get
{
return this.hebField;
}
set
{
this.hebField = value;
}
}
/// <remarks/>
public string hbint
{
get
{
return this.hbintField;
}
set
{
this.hbintField = value;
}
}
/// <remarks/>
public versesVerseCLDivDivDivPtyp ptyp
{
get
{
return this.ptypField;
}
set
{
this.ptypField = value;
}
}
/// <remarks/>
public string prela
{
get
{
return this.prelaField;
}
set
{
this.prelaField = value;
}
}
/// <remarks/>
public string pfunction
{
get
{
return this.pfunctionField;
}
set
{
this.pfunctionField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @class
{
get
{
return this.classField;
}
set
{
this.classField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDivDivDivHeb
{
private string idField;
private string classField;
private string onclickField;
private string onmouseoverField;
private string onmouseoutField;
private string ondblclickField;
private string valueField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @class
{
get
{
return this.classField;
}
set
{
this.classField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string onclick
{
get
{
return this.onclickField;
}
set
{
this.onclickField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string onmouseover
{
get
{
return this.onmouseoverField;
}
set
{
this.onmouseoverField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string onmouseout
{
get
{
return this.onmouseoutField;
}
set
{
this.onmouseoutField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string ondblclick
{
get
{
return this.ondblclickField;
}
set
{
this.ondblclickField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string Value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class versesVerseCLDivDivDivPtyp
{
private string detField;
private string undetField;
private string[] textField;
/// <remarks/>
public string det
{
get
{
return this.detField;
}
set
{
this.detField = value;
}
}
/// <remarks/>
public string undet
{
get
{
return this.undetField;
}
set
{
this.undetField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string[] Text
{
get
{
return this.textField;
}
set
{
this.textField = value;
}
}
}
/// <remarks/>
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(IncludeInSchema = false)]
public enum ItemsChoiceType
{
/// <remarks/>
ckind,
/// <remarks/>
connector,
/// <remarks/>
crela,
/// <remarks/>
ctyp,
/// <remarks/>
div,
/// <remarks/>
heb,
/// <remarks/>
@ref,
}
}