-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTpListExplorer.xml
1151 lines (1151 loc) · 48.3 KB
/
TpListExplorer.xml
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>TpListExplorer</name>
</assembly>
<members>
<member name="T:TpList.Explorer.FileOperations">
<summary>
Reads from IniFile.
</summary>
</member>
<member name="M:TpList.Explorer.FileOperations.ReadFromIniFile(System.String,System.String,System.String@,System.String)">
<summary>
Ini-Lesen.
</summary>
<param name="section">Section.</param>
<param name="key">Key.</param>
<param name="value">Value.</param>
<param name="inipath">Path to Ini.</param>
<returns>PASS/FAIL.</returns>
</member>
<member name="T:TpList.Explorer.Net">
<summary>
Class manages nets.
</summary>
</member>
<member name="M:TpList.Explorer.Net.#ctor(System.String,System.Collections.Generic.List{TpList.Explorer.PinGroup})">
<summary>
Initializes a new instance of the <see cref="T:TpList.Explorer.Net"/> class.
</summary>
<param name="name">The short net name.</param>
<param name="pins">Pins on the net.</param>
</member>
<member name="P:TpList.Explorer.Net.Name">
<summary>
Gets or sets the NetName.
</summary>
</member>
<member name="P:TpList.Explorer.Net.PinGroups">
<summary>
Gets or sets the pins on the net.
</summary>
</member>
<member name="P:TpList.Explorer.Net.LongName">
<summary>
Gets or sets the long NetName.
</summary>
</member>
<member name="T:TpList.Explorer.PinGroup">
<summary>
Group of pins on the same net at the same drawing reference.
</summary>
</member>
<member name="M:TpList.Explorer.PinGroup.#ctor(System.String,System.Collections.Generic.List{System.String})">
<summary>
Initializes a new instance of the <see cref="T:TpList.Explorer.PinGroup"/> class.
</summary>
<param name="drawRef">Name of the drawing reference.</param>
<param name="pins">List of pins of the same drawing reference and on the same net.</param>
</member>
<member name="P:TpList.Explorer.PinGroup.DrawRef">
<summary>
Gets or sets the Name of the drawing reference.
</summary>
</member>
<member name="P:TpList.Explorer.PinGroup.Pins">
<summary>
Gets or sets the List of pins of the same drawing reference and on the same net.
</summary>
</member>
<member name="T:TpList.Explorer.TestPoint">
<summary>
The class representing a test point entry in the TP List database.
</summary>
</member>
<member name="M:TpList.Explorer.TestPoint.#ctor(DbfDataReader.DbfRecord,System.Collections.Generic.IList{DbfDataReader.DbfColumn},System.Collections.Generic.List{TpList.Explorer.TpListExplorer.Site},System.Collections.Generic.List{TpList.Explorer.Net},System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:TpList.Explorer.TestPoint"/> class.
</summary>
<param name="record"> A DbfRecord from the DbfTable representing the TP List database.</param>
<param name="columns">A delegate which returns the list of columns of the DbfTable, which represents the TP List database.</param>
<param name="sites">The list of sites for the UUT.</param>
<param name="netlitst">List of nets for the UUT.</param>
<param name="topdown">Postion of UUt in fixture.</param>
</member>
<member name="T:TpList.Explorer.TestPoint.GetColumnsDelegate">
<summary>
A delegate used to get the list of columns of the DbfTable, which represents the TP List database.
</summary>
<returns>The list of columns of the DbfTable, which represents the TP List database.</returns>
</member>
<member name="T:TpList.Explorer.TestPoint.TestPointType">
<summary>
Represents the possible values for the "TP Type" attribute of the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Master">
<summary>
Master.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Kelvin">
<summary>
Kelvin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.MasterUnpositioned">
<summary>
Master unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.KelvinUnpositioned">
<summary>
Kelvin unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Dummy">
<summary>
Dummy.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DummyUnpositioned">
<summary>
Dummy unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DummyBoard">
<summary>
Dummy board.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DummyBoardUnpositioned">
<summary>
Dummy board unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DigitalGround">
<summary>
Digital ground.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DigitalGroundUnpositioned">
<summary>
Digital ground unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Parallel">
<summary>
Parallel.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.ParallelUnpositioned">
<summary>
Parallel unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Power">
<summary>
Power.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.PowerUnpositioned">
<summary>
Power unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Buffered">
<summary>
Buffered.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.BufferedUnpositioned">
<summary>
Buffered unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.ElectroscanMux">
<summary>
Electroscan MUX.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.ElectroscanDirect">
<summary>
Electroscan direct.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.MasterDouble">
<summary>
Msater double.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.KelvinDouble">
<summary>
Kelvin double.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Guard">
<summary>
Guard.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Digital">
<summary>
Digital.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.Functional">
<summary>
Functional.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DigitalDifferential">
<summary>
Digital differential.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.MasterReduced">
<summary>
Master reduced.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.KelvinReduced">
<summary>
Kelvin reduced.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.TestPointType.DummyReduced">
<summary>
Dummy reduced.
</summary>
</member>
<member name="T:TpList.Explorer.TestPoint.ContactType">
<summary>
Represents the possible values for the "Contact" attribute of the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.NC">
<summary>
N.C. or null.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.ThPin">
<summary>
TH Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.SmdPin">
<summary>
SMD Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.Pad">
<summary>
Pad.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.Via">
<summary>
Via.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.NotMountedSmdPin">
<summary>
Not Mounted SMD Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.NotMountedThPin">
<summary>
Not Mounted TH Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.BgaPin">
<summary>
BGA Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.ConnectorThPin">
<summary>
Connector TH Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.ConnectorSmdPin">
<summary>
Connector SMD Pin.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.TestPoint">
<summary>
Test Point.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.Bmu">
<summary>
BMU.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.BmuSupply">
<summary>
BMU Supply.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.ContactType.SmdIcPin">
<summary>
SMD IC Pin.
</summary>
</member>
<member name="T:TpList.Explorer.TestPoint.Probe">
<summary>
Represents the possible values for the "Probe Type" attribute of the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.None">
<summary>
None.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.ThreePoint">
<summary>
Three Point.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.FourPoint">
<summary>
Four Point.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.NinePoint">
<summary>
Nine Point.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Needle">
<summary>
Needle.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Sword">
<summary>
Sword.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Point">
<summary>
Point.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Cone">
<summary>
Cone.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Pyramid">
<summary>
Pyramid.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Pencil">
<summary>
Pencil.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Cup">
<summary>
Cup.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.FixedOnFlyingProbe">
<summary>
Fixed on Flying Probe.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.NztFixedOnFlyingPrb">
<summary>
NZT Fixed on Flying Prb.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.NztAnalogueFixedOnFP">
<summary>
NZT/Analogue Fixed on FP.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_304_150_A_30_00">
<summary>
INGUN GKS100.304.150.A.30.00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_306_150_A_30_00">
<summary>
INGUN GKS100.306.150.A.30.00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_291_090_A_30_00">
<summary>
INGUN GKS100.291.090.A.30.00 or INGUN GKS 100 291 090 A 30 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Cz_GLP1LB21_d1_22_AuCuBe_1_91">
<summary>
CZ GLP1LB21 d1.22 AuCuBe 1.91.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Cz_GLP1LB08_d0_75_AU_1_91">
<summary>
CZ GLP1LB08 d0.75 AU 1.91.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Cz_GLP1LS14_d0_75_HG_1_91">
<summary>
CZ GLP1LS14 d0.75 HG 1.91.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_214_050_A_20_00">
<summary>
INGUN GKS050.214.050.A.20.00
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_306_090_A_20_00">
<summary>
INGUN GKS050.306.090.A.20.00
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_306_090_A_20_00L">
<summary>
INGUN GKS050.306.090.A.20.00L
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_291_050_A_10_00">
<summary>
INGUN GKS 050 291 050 A 10 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_306_090_A_10_00">
<summary>
INGUN GKS 050 306 090 A 10 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_214_050_A_10_00">
<summary>
INGUN GKS 050 214 050 A 10 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_040_304_040_A_08_00">
<summary>
INGUN GKS 040 304 040 A 08 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_040_297_040_A_08_00">
<summary>
INGUN GKS 040 297 040 A 08 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_291_064_A_20_00">
<summary>
INGUN GKS 075 291 064 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_217_120_A_20_00">
<summary>
INGUN GKS 075 217 120 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_204_115_A_20_00">
<summary>
INGUN GKS 075 204 115 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_214_064_A_20_00">
<summary>
INGUN GKS 075 214 064 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_306_130_A_20_00">
<summary>
INGUN GKS 100 306 130 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_306_130_A_30_00">
<summary>
INGUN GKS 100 306 130 A 30 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_291_090_A_20_00">
<summary>
INGUN GKS 100 291 090 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_307_150_A_20_00">
<summary>
INGUN GKS 100 307 150 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_307_150_A_30_00">
<summary>
INGUN GKS 100 307 150 A 30 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_003_206_254_A_20_00">
<summary>
INGUN GKS 003 206 254 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_003_307_254_A_20_00">
<summary>
INGUN GKS 003 307 254 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_306_100_A_20_00">
<summary>
INGUN GKS 075 306 100 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_209_060_A_20_00">
<summary>
INGUN GKS 100 209 060 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_100_209_060_A_30_00">
<summary>
INGUN GKS 100 209 060 A 30 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_075_209_064_A_20_00">
<summary>
INGUN GKS 075 209 064 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_050_231_050_A_10_00">
<summary>
INGUN GKS 050 231 050 A 10 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_135_209_050_A_20_00">
<summary>
INGUN GKS 135 209 050 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_135_306_150_A_20_00">
<summary>
INGUN GKS 135 306 150 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_135_291_090_A_20_00">
<summary>
INGUN GKS 135 291 090 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_135_307_150_A_20_00">
<summary>
INGUN GKS 135 307 150 A 20 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_035_306_115_A_12_00">
<summary>
INGUN GKS 035 306 115 A 12 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_035_207_115_A_12_00">
<summary>
INGUN GKS 035 207 115 A 12 00.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Probe.Ingun_GKS_035_291_064_A_12_00">
<summary>
INGUN GKS 035 291 064 A 12 00.
</summary>
</member>
<member name="T:TpList.Explorer.TestPoint.Side">
<summary>
Represents the possible values for the "Board Side" and "Probe Side" attributes of the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Side.NotSpecified">
<summary>
Not specified.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Side.Unpositioned">
<summary>
Unpositioned.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Side.Bottom">
<summary>
Bottom.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.Side.Top">
<summary>
Top.
</summary>
</member>
<member name="T:TpList.Explorer.TestPoint.SourceType">
<summary>
Represents the possible values for the "Source" attribute of the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Automatic">
<summary>
Automatic.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Manual">
<summary>
Manual.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Superimposed">
<summary>
Superimposed.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Debugged">
<summary>
Debugged.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Validated">
<summary>
Validated.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.Debbuged_Validated">
<summary>
Debugged & Validated.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.ForcedPositioning">
<summary>
Forced Positioning.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.ForcedPriority">
<summary>
Forced Priority.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.ForcedPriority_Shifted">
<summary>
Forced Priority & Shifted.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.ForcedPriority_Reduced">
<summary>
Forced Priority & Reduced.
</summary>
</member>
<member name="F:TpList.Explorer.TestPoint.SourceType.ForcedPriority_Shifted_Reduced">
<summary>
Forced Priority & Shifted & Reduced.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.TpNumber">
<summary>
Gets the "TP Number" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Channel">
<summary>
Gets the "Channel" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.TpName">
<summary>
Gets the "TP Name" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.DrawingReference">
<summary>
Gets the "Drawing Ref." attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Pin">
<summary>
Gets the "Pin" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Net">
<summary>
Gets the "Net Name" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.TpType">
<summary>
Gets the "TP Type" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.X_mm">
<summary>
Gets the "X" attribute for this Test Point in [mm].
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Y_mm">
<summary>
Gets the "Y" attribute for this Test Point in [mm].
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Z_mm">
<summary>
Gets the "Z" attribute for this Test Point in [mm].
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.ExtraDown_mm">
<summary>
Gets the "Extra Down" attribute for this Test Point in [mm].
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Contact">
<summary>
Gets the "Contact" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.ProbeType">
<summary>
Gets the "Probe Type" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.ProbeMeasure">
<summary>
Gets the "Probe Measure" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Checked">
<summary>
Gets a value indicating whether the "Checked" attribute for this Test Point is or isn't set.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.ProbeSide">
<summary>
Gets the "Probe Side" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Source">
<summary>
Gets the "Source" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.BoardSide">
<summary>
Gets the "Board Side" attribute for this Test Point.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.IsPositioned">
<summary>
Gets a value indicating whether the Test Point is positioned or not.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Site">
<summary>
Gets the site of the TP in a panel of boards.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Bay">
<summary>
Gets the Bay which is responsible for testing the UUT that contains this testpoint.
</summary>
</member>
<member name="P:TpList.Explorer.TestPoint.Columns">
<summary>
Gets or sets the columns of the DbfTable representing the Test Point database.
</summary>
</member>
<member name="M:TpList.Explorer.TestPoint.GetObjectFrom(DbfDataReader.DbfRecord,System.String)">
<summary>
Retrieves the value of a record's attribute using its column name.
</summary>
<param name="record">The record used to extract the value.</param>
<param name="name">The name of the column from which the value should be extracted.</param>
<returns>The value as a C#-Object. It must be casted to its correspondent type later.</returns>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the column name wasn't found in the database.</exception>
</member>
<member name="M:TpList.Explorer.TestPoint.GetTpNumberFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "TP Number" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The TP Number as an integer.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetTpNameFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "TP Name" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The TP Name as a string. If no value was found, an empty string is returned instead.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetDrawingReferenceFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Drawing Ref." attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The Drawing Reference as a string. If no value was found, an empty string is returned instead.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetPinNameFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Pin" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The Pin Name as a string. If no value was found, an empty string is returned instead.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetNetNameFrom(DbfDataReader.DbfRecord,System.Collections.Generic.List{TpList.Explorer.Net})">
<summary>
Retrieves the value of the "Net Name" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<param name="netlist">The List of Nets on UUt.</param>
<returns>The Net Name as a string.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetXFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "X" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of X in mm as a double or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetYFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Y" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Y in mm as a double or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetProbeMeasureFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Probe Measure" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of the Probe Measure as a double or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetChannelFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Channel" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Channel as an integer or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetZFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Z" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Z in mm as a double or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetExtraDownFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Extra Down" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Extra Down in mm as a double or null if no value was found.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetCheckedFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Checked" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Checked as a boolean.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetSideFrom(DbfDataReader.DbfRecord,System.String)">
<summary>
Retrieves the value of the "Board Side" or "Probe Side" attributes from a record, based on the column name passed to it.
</summary>
<param name="record">The record used to extract the value.</param>
<param name="column">The name column name, which can be either "BOARD_SIDE" or "ACCESS_SID".</param>
<returns>The retrived value as an enumeration.</returns>
<exception cref="T:System.ArgumentException">Thrown when the column argument differs from "BOARD_SIDE" or "ACCESS_SID".</exception>
</member>
<member name="M:TpList.Explorer.TestPoint.GetBoardSideFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Board Side" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Board Side as an enumeration.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetProbeSideFrom(DbfDataReader.DbfRecord,System.Boolean)">
<summary>
Retrieves the value of the "Probe Side" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<param name="topdown">Postion of UUT in fixture.</param>
<returns>The value of Probe Side as an enumeration.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetContactFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Contact" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Contact as an enumeration.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetSourceFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Source" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Source as an enumeration.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetTpTypeFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "TP Type" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of TP Type as an enumeration.</returns>
</member>
<member name="M:TpList.Explorer.TestPoint.GetProbeTypeFrom(DbfDataReader.DbfRecord)">
<summary>
Retrieves the value of the "Probe Type" attribute from a record.
</summary>
<param name="record">The record used to extract the value.</param>
<returns>The value of Probe Type as an enumeartion.</returns>
</member>
<member name="T:TpList.Explorer.TpListExplorer">
<summary>
The main TpListExplorer class.
Contains methods and properties to support accessing the TP List database of a Leonardo project.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.NetInfoFileName">
<summary>
A constant holding the name of the database that will be used to get the Long Netnames.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.NetListFileName">
<summary>
A constant holding the name of the database that will be used to get the Pin - Net Relation.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.TpListFileName">
<summary>
A constant holding the name of the database that will be used to populate the TP List.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.PanelFileName">
<summary>
A constant holding the name of the database that will be used to find out the site of each TP.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.TempCopyDiff">
<summary>
A constant containing a distinguishing string that is appended to the original filename when a temporary copy is created.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.netInfoExists">
<summary>
If no NetInfo exists no long net names can be read.
</summary>
</member>
<member name="F:TpList.Explorer.TpListExplorer.topDown">
<summary>
Is true if the board is positioned topdown inside the adapter.
</summary>
</member>
<member name="M:TpList.Explorer.TpListExplorer.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:TpList.Explorer.TpListExplorer"/> class, by passing the TPGM Path as returned
by the TpgmPathRead() function, which is found in the class modAtosF2 of the AtosF's dll.
</summary>
<param name="tpgmPath">
A string to the TPGM Path as returned by the TpgmPathRead() function in class modAtosF2 of the AtosF's dll.
Example: "C:\Leonardo\TPRJ110\PRJ\TPGM_FOLDER\TPGM\PROGRAM\".
</param>
<exception cref="T:System.IO.FileNotFoundException">Thrown when TPLIST database wasn't found.</exception>
<exception cref="T:System.FormatException">Thrown when database does not have the expected format.</exception>
</member>
<member name="P:TpList.Explorer.TpListExplorer.TpgmPath">
<summary>
Gets or sets the path to the ..\PRJ\TPGM_FOLDER\TPGM\PROGRAM\ folder of a Leonardo project.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.SiteCount">
<summary>
Gets the number of sites of the UUT.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.SiteOffset">
<summary>
Gets the base offset between the same test point in different sites.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.Adaptertpath">
<summary>
Gets the path to the ..\ADAPTER\TPGM_FOLDER\TPGM\ folder of a Leonardo project.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.Boardpath">
<summary>
Gets the path to the ..\BOARD\TPGM_FOLDER\TPGM\ folder of a Leonardo project.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.TpList">
<summary>
Gets the test point list, containing all test points found in the database.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.Sites">
<summary>
Gets the list of site offsets. The first element of the Tupel is the site and the sencond one
is the corresponding offset.
</summary>
</member>
<member name="P:TpList.Explorer.TpListExplorer.NetList">
<summary>
Gets the list of the netname and long netname relation and Pin-relation.
</summary>