forked from randoop/randoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-all.html
8953 lines (8936 loc) · 951 KB
/
index-all.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>Index (randoop 3.1.5 API)</title>
<link rel="stylesheet" type="text/css" href="javadocstyle.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (randoop 3.1.5 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a href="#I:Z">Z</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_COLLECTION_TYPE">ABSTRACT_COLLECTION_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractCollection</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_LIST_TYPE">ABSTRACT_LIST_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractList</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_MAP_TYPE">ABSTRACT_MAP_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractMap</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_QUEUE_TYPE">ABSTRACT_QUEUE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractQueue</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_SEQUENTIAL_LIST_TYPE">ABSTRACT_SEQUENTIAL_LIST_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractSequentialList</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ABSTRACT_SET_TYPE">ABSTRACT_SET_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>AbstractSet</code></div>
</dd>
<dt><a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation"><span class="typeNameLink">AbstractGenerator</span></a> - Class in <a href="randoop/generation/package-summary.html">randoop.generation</a></dt>
<dd>
<div class="block">Algorithm template for implementing a test generator.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/AbstractGenerator.html#AbstractGenerator-java.util.List-long-int-int-randoop.generation.ComponentManager-randoop.generation.IStopper-randoop.generation.RandoopListenerManager-">AbstractGenerator(List<TypedOperation>, long, int, int, ComponentManager, IStopper, RandoopListenerManager)</a></span> - Constructor for class randoop.generation.<a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation">AbstractGenerator</a></dt>
<dd>
<div class="block">Constructs a generator with the given parameters.</div>
</dd>
<dt><a href="randoop/field/AccessibleField.html" title="class in randoop.field"><span class="typeNameLink">AccessibleField</span></a> - Class in <a href="randoop/field/package-summary.html">randoop.field</a></dt>
<dd>
<div class="block">AccessibleField represents an accessible field of a class object, which can be an instance field,
a static field, or a static final field.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/field/AccessibleField.html#AccessibleField-java.lang.reflect.Field-randoop.types.ClassOrInterfaceType-">AccessibleField(Field, ClassOrInterfaceType)</a></span> - Constructor for class randoop.field.<a href="randoop/field/AccessibleField.html" title="class in randoop.field">AccessibleField</a></dt>
<dd>
<div class="block">Create the public field object for the given <code>Field</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/ListOfLists.html#accumulatedSize">accumulatedSize</a></span> - Variable in class randoop.util.<a href="randoop/util/ListOfLists.html" title="class in randoop.util">ListOfLists</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#activeFlags">activeFlags</a></span> - Variable in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd>
<div class="block">A set of bits, where there is one bit associated with each index.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/compile/SequenceClassLoader.html#add-java.lang.String-javax.tools.JavaFileObject-">add(String, JavaFileObject)</a></span> - Method in class randoop.compile.<a href="randoop/compile/SequenceClassLoader.html" title="class in randoop.compile">SequenceClassLoader</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/EqualsMethodMatcher.html#add-java.lang.Object-">add(Object)</a></span> - Method in class randoop.generation.<a href="randoop/generation/EqualsMethodMatcher.html" title="class in randoop.generation">EqualsMethodMatcher</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/EverythingIsDifferentMatcher.html#add-java.lang.Object-">add(Object)</a></span> - Method in class randoop.generation.<a href="randoop/generation/EverythingIsDifferentMatcher.html" title="class in randoop.generation">EverythingIsDifferentMatcher</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/StateMatcher.html#add-java.lang.Object-">add(Object)</a></span> - Method in interface randoop.generation.<a href="randoop/generation/StateMatcher.html" title="interface in randoop.generation">StateMatcher</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#add-randoop.reflection.ClassVisitor-">add(ClassVisitor)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Registers a <a href="randoop/reflection/ClassVisitor.html" title="interface in randoop.reflection"><code>ClassVisitor</code></a> for use by the <a href="randoop/reflection/ReflectionManager.html#apply-java.lang.Class-"><code>ReflectionManager.apply(Class)</code></a> method.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/SequenceCollection.html#add-randoop.sequence.Sequence-">add(Sequence)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/SequenceCollection.html" title="class in randoop.sequence">SequenceCollection</a></dt>
<dd>
<div class="block">Add a sequence to this collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/SubTypeSet.html#add-randoop.types.Type-">add(Type)</a></span> - Method in class randoop.<a href="randoop/SubTypeSet.html" title="class in randoop">SubTypeSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/test/ContractSet.html#add-randoop.contract.ObjectContract-">add(ObjectContract)</a></span> - Method in class randoop.test.<a href="randoop/test/ContractSet.html" title="class in randoop.test">ContractSet</a></dt>
<dd>
<div class="block">Adds a contract to this set.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ErrorRevealingChecks.html#add-randoop.test.Check-">add(Check)</a></span> - Method in class randoop.test.<a href="randoop/test/ErrorRevealingChecks.html" title="class in randoop.test">ErrorRevealingChecks</a></dt>
<dd>
<div class="block">Add a check to this sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/InvalidChecks.html#add-randoop.test.Check-">add(Check)</a></span> - Method in class randoop.test.<a href="randoop/test/InvalidChecks.html" title="class in randoop.test">InvalidChecks</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/test/RegressionChecks.html#add-randoop.test.Check-">add(Check)</a></span> - Method in class randoop.test.<a href="randoop/test/RegressionChecks.html" title="class in randoop.test">RegressionChecks</a></dt>
<dd>
<div class="block">Adds the given check to the sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/TestChecks.html#add-randoop.test.Check-">add(Check)</a></span> - Method in interface randoop.test.<a href="randoop/test/TestChecks.html" title="interface in randoop.test">TestChecks</a></dt>
<dd>
<div class="block">Add a check to this sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/ArrayListSimpleList.html#add-T-">add(T)</a></span> - Method in class randoop.util.<a href="randoop/util/ArrayListSimpleList.html" title="class in randoop.util">ArrayListSimpleList</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/IMultiMap.html#add-T1-T2-">add(T1, T2)</a></span> - Method in interface randoop.util.<a href="randoop/util/IMultiMap.html" title="interface in randoop.util">IMultiMap</a></dt>
<dd>
<div class="block">Precondition: the mapping key→value is not already in the map.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/ISimpleSet.html#add-T-">add(T)</a></span> - Method in interface randoop.util.<a href="randoop/util/ISimpleSet.html" title="interface in randoop.util">ISimpleSet</a></dt>
<dd>
<div class="block">Adds the given elt to the set.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/KeyToMultiSet.html#add-T1-T2-">add(T1, T2)</a></span> - Method in class randoop.util.<a href="randoop/util/KeyToMultiSet.html" title="class in randoop.util">KeyToMultiSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/MultiMap.html#add-T1-T2-">add(T1, T2)</a></span> - Method in class randoop.util.<a href="randoop/util/MultiMap.html" title="class in randoop.util">MultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/MultiSet.html#add-T-">add(T)</a></span> - Method in class randoop.util.<a href="randoop/util/MultiSet.html" title="class in randoop.util">MultiSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ReversibleMultiMap.html#add-T1-T2-">add(T1, T2)</a></span> - Method in class randoop.util.<a href="randoop/util/ReversibleMultiMap.html" title="class in randoop.util">ReversibleMultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ReversibleSet.html#add-T-">add(T)</a></span> - Method in class randoop.util.<a href="randoop/util/ReversibleSet.html" title="class in randoop.util">ReversibleSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/SimpleSet.html#add-T-">add(T)</a></span> - Method in class randoop.util.<a href="randoop/util/SimpleSet.html" title="class in randoop.util">SimpleSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/WeightedList.html#add-randoop.util.WeightedElement-">add(WeightedElement)</a></span> - Method in class randoop.util.<a href="randoop/util/WeightedList.html" title="class in randoop.util">WeightedList</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ReversibleMultiMap.html#add_bare-T1-T2-">add_bare(T1, T2)</a></span> - Method in class randoop.util.<a href="randoop/util/ReversibleMultiMap.html" title="class in randoop.util">ReversibleMultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#addAfterAll-com.github.javaparser.ast.stmt.BlockStmt-">addAfterAll(BlockStmt)</a></span> - Method in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">Add text for AfterClass-annotated method in each generated text class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#addAfterEach-com.github.javaparser.ast.stmt.BlockStmt-">addAfterEach(BlockStmt)</a></span> - Method in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">Add text for After-annotated method in each generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/SequenceCollection.html#addAll-java.util.Collection-">addAll(Collection<Sequence>)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/SequenceCollection.html" title="class in randoop.sequence">SequenceCollection</a></dt>
<dd>
<div class="block">All all sequences to this collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/SequenceCollection.html#addAll-randoop.sequence.SequenceCollection-">addAll(SequenceCollection)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/SequenceCollection.html" title="class in randoop.sequence">SequenceCollection</a></dt>
<dd>
<div class="block">Add all sequences to this collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/KeyToMultiSet.html#addAll-java.util.Map-">addAll(Map<? extends T1, ? extends T2>)</a></span> - Method in class randoop.util.<a href="randoop/util/KeyToMultiSet.html" title="class in randoop.util">KeyToMultiSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/KeyToMultiSet.html#addAll-T1-java.util.Collection-">addAll(T1, Collection<? extends T2>)</a></span> - Method in class randoop.util.<a href="randoop/util/KeyToMultiSet.html" title="class in randoop.util">KeyToMultiSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/MultiMap.html#addAll-java.util.Map-">addAll(Map<? extends T1, ? extends T2>)</a></span> - Method in class randoop.util.<a href="randoop/util/MultiMap.html" title="class in randoop.util">MultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/MultiMap.html#addAll-T1-java.util.Collection-">addAll(T1, Collection<? extends T2>)</a></span> - Method in class randoop.util.<a href="randoop/util/MultiMap.html" title="class in randoop.util">MultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/MultiMap.html#addAll-randoop.util.MultiMap-">addAll(MultiMap<T1, T2>)</a></span> - Method in class randoop.util.<a href="randoop/util/MultiMap.html" title="class in randoop.util">MultiMap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#addBeforeAll-com.github.javaparser.ast.stmt.BlockStmt-">addBeforeAll(BlockStmt)</a></span> - Method in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">Add text for BeforeClass-annotated method in each generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#addBeforeEach-com.github.javaparser.ast.stmt.BlockStmt-">addBeforeEach(BlockStmt)</a></span> - Method in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">Add text for Before-annotated method in each generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ComponentManager.html#addClassLevelLiteral-randoop.types.ClassOrInterfaceType-randoop.sequence.Sequence-">addClassLevelLiteral(ClassOrInterfaceType, Sequence)</a></span> - Method in class randoop.generation.<a href="randoop/generation/ComponentManager.html" title="class in randoop.generation">ComponentManager</a></dt>
<dd>
<div class="block">Add a sequence representing a literal value that can be used when testing members of the given
class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#addClassLiterals-randoop.generation.ComponentManager-java.util.List-randoop.main.GenInputsAbstract.ClassLiteralsMode-">addClassLiterals(ComponentManager, List<String>, GenInputsAbstract.ClassLiteralsMode)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Adds literals to the component manager, by parsing any literals files specified by the user.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#addClassTypes-randoop.reflection.VisibilityPredicate-randoop.reflection.ReflectionPredicate-java.util.Set-java.util.Set-randoop.main.ClassNameErrorHandler-java.util.List-">addClassTypes(VisibilityPredicate, ReflectionPredicate, Set<String>, Set<String>, ClassNameErrorHandler, List<String>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Gathers class types to be used in a run of Randoop and adds them to this <code>OperationModel</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/ExecutableSequence.html#addCoveredClass-java.lang.Class-">addCoveredClass(Class<?>)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/ExecutableSequence.html" title="class in randoop.sequence">ExecutableSequence</a></dt>
<dd>
<div class="block">Adds a covered class to the most recent execution results of this sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Execution.html#addCoveredClass-java.lang.Class-">addCoveredClass(Class<?>)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Execution.html" title="class in randoop.sequence">Execution</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/AbstractGenerator.html#addExecutionVisitor-randoop.ExecutionVisitor-">addExecutionVisitor(ExecutionVisitor)</a></span> - Method in class randoop.generation.<a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation">AbstractGenerator</a></dt>
<dd>
<div class="block">Registers a visitor with this object for use while executing each generated sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ComponentManager.html#addGeneratedSequence-randoop.sequence.Sequence-">addGeneratedSequence(Sequence)</a></span> - Method in class randoop.generation.<a href="randoop/generation/ComponentManager.html" title="class in randoop.generation">ComponentManager</a></dt>
<dd>
<div class="block">Add a component sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/TypeExtractor.html#addIfConcrete-randoop.types.Type-">addIfConcrete(Type)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/TypeExtractor.html" title="class in randoop.reflection">TypeExtractor</a></dt>
<dd>
<div class="block">Determines whether the given general type is not generic, and, if so, adds the concrete type to
the input types of this object.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/RandoopListenerManager.html#addListener-randoop.generation.IEventListener-">addListener(IEventListener)</a></span> - Method in class randoop.generation.<a href="randoop/generation/RandoopListenerManager.html" title="class in randoop.generation">RandoopListenerManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedOperation.html#addNullReceiver-java.lang.Object:A-">addNullReceiver(Object[])</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedOperation.html" title="class in randoop.operation">TypedOperation</a></dt>
<dd>
<div class="block">Fixes the argument array for checking an <a href="randoop/operation/Operation.html" title="interface in randoop.operation"><code>Operation</code></a> -- inserting <code>null</code> as first
argument when this operation is static.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/PostConditionCheckGenerator.html#addNullReceiver-java.lang.Object:A-">addNullReceiver(Object[])</a></span> - Method in class randoop.test.<a href="randoop/test/PostConditionCheckGenerator.html" title="class in randoop.test">PostConditionCheckGenerator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#addObjectConstructor--">addObjectConstructor()</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Creates and adds the Object class default constructor call to the concrete operations.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationExtractor.html#addOperation-randoop.operation.TypedClassOperation-">addOperation(TypedClassOperation)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationExtractor.html" title="class in randoop.reflection">OperationExtractor</a></dt>
<dd>
<div class="block">Adds an operation to the collection of this extractor.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#addOperations-java.util.Set-randoop.reflection.VisibilityPredicate-randoop.reflection.ReflectionPredicate-">addOperations(Set<ClassOrInterfaceType>, VisibilityPredicate, ReflectionPredicate)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Iterates through a set of simple and instantiated class types and uses reflection to extract
the operations that satisfy both the visibility and reflection predicates, and then adds them
to the operation set of this model.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#addOperations-java.util.Set-">addOperations(Set<String>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Create operations obtained by parsing method signatures and add each to this model.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ComponentManager.html#addPackageLevelLiteral-java.lang.Package-randoop.sequence.Sequence-">addPackageLevelLiteral(Package, Sequence)</a></span> - Method in class randoop.generation.<a href="randoop/generation/ComponentManager.html" title="class in randoop.generation">ComponentManager</a></dt>
<dd>
<div class="block">Add a sequence representing a literal value that can be used when testing classes in the given
package.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/SubTypeSet.html#addQueryType-randoop.types.Type-">addQueryType(Type)</a></span> - Method in class randoop.<a href="randoop/SubTypeSet.html" title="class in randoop">SubTypeSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/ClassLiterals.html#addSequence-randoop.types.ClassOrInterfaceType-randoop.sequence.Sequence-">addSequence(ClassOrInterfaceType, Sequence)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/ClassLiterals.html" title="class in randoop.sequence">ClassLiterals</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/MappedSequences.html#addSequence-T-randoop.sequence.Sequence-">addSequence(T, Sequence)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/MappedSequences.html" title="class in randoop.sequence">MappedSequences</a></dt>
<dd>
<div class="block">Adds a sequence to the set of sequences associated with the given key.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/PackageLiterals.html#addSequence-java.lang.Package-randoop.sequence.Sequence-">addSequence(Package, Sequence)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/PackageLiterals.html" title="class in randoop.sequence">PackageLiterals</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/AbstractGenerator.html#addTestCheckGenerator-randoop.test.TestCheckGenerator-">addTestCheckGenerator(TestCheckGenerator)</a></span> - Method in class randoop.generation.<a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation">AbstractGenerator</a></dt>
<dd>
<div class="block">Registers a visitor with this object to generate checks following execution of each generated
test sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/AbstractGenerator.html#addTestPredicate-randoop.util.predicate.Predicate-">addTestPredicate(Predicate<ExecutableSequence>)</a></span> - Method in class randoop.generation.<a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation">AbstractGenerator</a></dt>
<dd>
<div class="block">Registers test predicate with this generator for use while filtering generated tests for
output.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#AFTER_ALL">AFTER_ALL</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The JUnit annotation for the AfterAll option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#AFTER_ALL_METHOD">AFTER_ALL_METHOD</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The method name for the AfterAll option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#AFTER_EACH">AFTER_EACH</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The JUnit annotation for the AfterEach option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#AFTER_EACH_METHOD">AFTER_EACH_METHOD</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The method name for the AfterEach option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#afterAllBody">afterAllBody</a></span> - Variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The Java text for AfterAll method of generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenTests.html#afterAllFixtureBody">afterAllFixtureBody</a></span> - Variable in class randoop.main.<a href="randoop/main/GenTests.html" title="class in randoop.main">GenTests</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#afterEachBody">afterEachBody</a></span> - Variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The Java text for AfterEach method of generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenTests.html#afterEachFixtureBody">afterEachFixtureBody</a></span> - Variable in class randoop.main.<a href="randoop/main/GenTests.html" title="class in randoop.main">GenTests</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#agent">agent</a></span> - Static variable in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd>
<div class="block">Specify an extra command for recursive JVM calls that Randoop spawns.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#alias_ratio">alias_ratio</a></span> - Static variable in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd>
<div class="block">Try to reuse values from a sequence with the given frequency.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#allowShortForm">allowShortForm</a></span> - Variable in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ForwardGenerator.html#allSequences">allSequences</a></span> - Variable in class randoop.generation.<a href="randoop/generation/ForwardGenerator.html" title="class in randoop.generation">ForwardGenerator</a></dt>
<dd>
<div class="block">The set of ALL sequences ever generated, including sequences that were executed and then
discarded.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ForwardGenerator.html#allsequencesAsCode">allsequencesAsCode</a></span> - Variable in class randoop.generation.<a href="randoop/generation/ForwardGenerator.html" title="class in randoop.generation">ForwardGenerator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/ForwardGenerator.html#allsequencesAsList">allsequencesAsList</a></span> - Variable in class randoop.generation.<a href="randoop/generation/ForwardGenerator.html" title="class in randoop.generation">ForwardGenerator</a></dt>
<dd> </dd>
<dt><a href="randoop/util/predicate/AlwaysFalse.html" title="class in randoop.util.predicate"><span class="typeNameLink">AlwaysFalse</span></a><<a href="randoop/util/predicate/AlwaysFalse.html" title="type parameter in AlwaysFalse">T</a>> - Class in <a href="randoop/util/predicate/package-summary.html">randoop.util.predicate</a></dt>
<dd>
<div class="block">Predicate that always return false.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/AlwaysFalse.html#AlwaysFalse--">AlwaysFalse()</a></span> - Constructor for class randoop.util.predicate.<a href="randoop/util/predicate/AlwaysFalse.html" title="class in randoop.util.predicate">AlwaysFalse</a></dt>
<dd> </dd>
<dt><a href="randoop/test/predicate/AlwaysFalseExceptionPredicate.html" title="class in randoop.test.predicate"><span class="typeNameLink">AlwaysFalseExceptionPredicate</span></a> - Class in <a href="randoop/test/predicate/package-summary.html">randoop.test.predicate</a></dt>
<dd>
<div class="block">An <code>ExceptionPredicate</code> that always returns false.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/predicate/AlwaysFalseExceptionPredicate.html#AlwaysFalseExceptionPredicate--">AlwaysFalseExceptionPredicate()</a></span> - Constructor for class randoop.test.predicate.<a href="randoop/test/predicate/AlwaysFalseExceptionPredicate.html" title="class in randoop.test.predicate">AlwaysFalseExceptionPredicate</a></dt>
<dd> </dd>
<dt><a href="randoop/util/predicate/AlwaysTrue.html" title="class in randoop.util.predicate"><span class="typeNameLink">AlwaysTrue</span></a><<a href="randoop/util/predicate/AlwaysTrue.html" title="type parameter in AlwaysTrue">T</a>> - Class in <a href="randoop/util/predicate/package-summary.html">randoop.util.predicate</a></dt>
<dd>
<div class="block">A predicate that always returns true.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/AlwaysTrue.html#AlwaysTrue--">AlwaysTrue()</a></span> - Constructor for class randoop.util.predicate.<a href="randoop/util/predicate/AlwaysTrue.html" title="class in randoop.util.predicate">AlwaysTrue</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/AlwaysFalse.html#and-randoop.util.predicate.Predicate-">and(Predicate<T>)</a></span> - Method in class randoop.util.predicate.<a href="randoop/util/predicate/AlwaysFalse.html" title="class in randoop.util.predicate">AlwaysFalse</a></dt>
<dd>
<div class="block">Creates a new predicate that performs an and-also operator on this and the given predicate.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/AlwaysTrue.html#and-randoop.util.predicate.Predicate-">and(Predicate<T>)</a></span> - Method in class randoop.util.predicate.<a href="randoop/util/predicate/AlwaysTrue.html" title="class in randoop.util.predicate">AlwaysTrue</a></dt>
<dd>
<div class="block">Creates a new predicate that performs an and-also operator on this and the given predicate.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/DefaultPredicate.html#and-randoop.util.predicate.Predicate-">and(Predicate<T>)</a></span> - Method in class randoop.util.predicate.<a href="randoop/util/predicate/DefaultPredicate.html" title="class in randoop.util.predicate">DefaultPredicate</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/Predicate.html#and-randoop.util.predicate.Predicate-">and(Predicate<T>)</a></span> - Method in interface randoop.util.predicate.<a href="randoop/util/predicate/Predicate.html" title="interface in randoop.util.predicate">Predicate</a></dt>
<dd>
<div class="block">Creates a new predicate that performs an and-also operator on this and the given predicate.</div>
</dd>
<dt><a href="randoop/util/predicate/AndPredicate.html" title="class in randoop.util.predicate"><span class="typeNameLink">AndPredicate</span></a><<a href="randoop/util/predicate/AndPredicate.html" title="type parameter in AndPredicate">T</a>> - Class in <a href="randoop/util/predicate/package-summary.html">randoop.util.predicate</a></dt>
<dd>
<div class="block">Predicate that implements the and-also operator on a pair of predicates.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/predicate/AndPredicate.html#AndPredicate-randoop.util.predicate.Predicate-randoop.util.predicate.Predicate-">AndPredicate(Predicate<T>, Predicate<T>)</a></span> - Constructor for class randoop.util.predicate.<a href="randoop/util/predicate/AndPredicate.html" title="class in randoop.util.predicate">AndPredicate</a></dt>
<dd>
<div class="block">Creates a Predicate that performs the and-also operator: testing the first predicate, and then
the second.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/OperationModel.html#annotatedTestValues">annotatedTestValues</a></span> - Variable in class randoop.reflection.<a href="randoop/reflection/OperationModel.html" title="class in randoop.reflection">OperationModel</a></dt>
<dd>
<div class="block">Set of singleton sequences for values from TestValue annotated fields.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/EmptyExceptionCheck.html#appendCatchBehavior-java.lang.StringBuilder-">appendCatchBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/EmptyExceptionCheck.html" title="class in randoop.test">EmptyExceptionCheck</a></dt>
<dd>
<div class="block">Appends code for catch block behavior corresponding to expected exception.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ExceptionCheck.html#appendCatchBehavior-java.lang.StringBuilder-">appendCatchBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/ExceptionCheck.html" title="class in randoop.test">ExceptionCheck</a></dt>
<dd>
<div class="block">Appends code for catch block behavior corresponding to expected exception.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ExpectedExceptionCheck.html#appendCatchBehavior-java.lang.StringBuilder-">appendCatchBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/ExpectedExceptionCheck.html" title="class in randoop.test">ExpectedExceptionCheck</a></dt>
<dd>
<div class="block">Appends code for catch block behavior corresponding to expected exception.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/InvalidExceptionCheck.html#appendCatchBehavior-java.lang.StringBuilder-">appendCatchBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/InvalidExceptionCheck.html" title="class in randoop.test">InvalidExceptionCheck</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ArrayCreation.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/ArrayCreation.html" title="class in randoop.operation">ArrayCreation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ArrayElementSet.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/ArrayElementSet.html" title="class in randoop.operation">ArrayElementSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/CallableOperation.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/CallableOperation.html" title="class in randoop.operation">CallableOperation</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ConstructorCall.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/ConstructorCall.html" title="class in randoop.operation">ConstructorCall</a></dt>
<dd>
<div class="block">Adds code for a constructor call to the given <code>StringBuilder</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/EnumConstant.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/EnumConstant.html" title="class in randoop.operation">EnumConstant</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/FieldGet.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/FieldGet.html" title="class in randoop.operation">FieldGet</a></dt>
<dd>
<div class="block">Adds the text for an initialization of a variable from a field to the StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/FieldSet.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/FieldSet.html" title="class in randoop.operation">FieldSet</a></dt>
<dd>
<div class="block">Generates code for setting a field.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/InitializedArrayCreation.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/InitializedArrayCreation.html" title="class in randoop.operation">InitializedArrayCreation</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/MethodCall.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/MethodCall.html" title="class in randoop.operation">MethodCall</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/NonreceiverTerm.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/NonreceiverTerm.html" title="class in randoop.operation">NonreceiverTerm</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ReflectionArrayCreation.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/ReflectionArrayCreation.html" title="class in randoop.operation">ReflectionArrayCreation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedClassOperation.html#appendCode-java.util.List-java.lang.StringBuilder-">appendCode(List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedClassOperation.html" title="class in randoop.operation">TypedClassOperation</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and append it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedOperation.html#appendCode-java.util.List-java.lang.StringBuilder-">appendCode(List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedOperation.html" title="class in randoop.operation">TypedOperation</a></dt>
<dd>
<div class="block">Appends Java text for this operation to the given <code>StringBuilder</code>, and using the given
variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedTermOperation.html#appendCode-java.util.List-java.lang.StringBuilder-">appendCode(List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedTermOperation.html" title="class in randoop.operation">TypedTermOperation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/UncheckedCast.html#appendCode-randoop.types.Type-randoop.types.TypeTuple-randoop.types.Type-java.util.List-java.lang.StringBuilder-">appendCode(Type, TypeTuple, Type, List<Variable>, StringBuilder)</a></span> - Method in class randoop.operation.<a href="randoop/operation/UncheckedCast.html" title="class in randoop.operation">UncheckedCast</a></dt>
<dd>
<div class="block">Produces a Java source code representation of this statement and appends it to the given
StringBuilder.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#appendCode-java.lang.StringBuilder-int-">appendCode(StringBuilder, int)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd>
<div class="block">Appends the statement at the given index to the <code>StringBuilder</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Statement.html#appendCode-randoop.sequence.Variable-java.util.List-java.lang.StringBuilder-">appendCode(Variable, List<Variable>, StringBuilder)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Statement.html" title="class in randoop.sequence">Statement</a></dt>
<dd>
<div class="block">Adds code for the statement to the given <code>StringBuilder</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/LiteralFileReader.html#appendRecord-java.lang.StringBuilder-java.util.List-int-">appendRecord(StringBuilder, List<String>, int)</a></span> - Static method in class randoop.reflection.<a href="randoop/reflection/LiteralFileReader.html" title="class in randoop.reflection">LiteralFileReader</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/test/EmptyExceptionCheck.html#appendTryBehavior-java.lang.StringBuilder-">appendTryBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/EmptyExceptionCheck.html" title="class in randoop.test">EmptyExceptionCheck</a></dt>
<dd>
<div class="block">Appends code to follow the statement throwing expected exception in try block.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ExceptionCheck.html#appendTryBehavior-java.lang.StringBuilder-">appendTryBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/ExceptionCheck.html" title="class in randoop.test">ExceptionCheck</a></dt>
<dd>
<div class="block">Appends code to follow the statement throwing expected exception in try block.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ExpectedExceptionCheck.html#appendTryBehavior-java.lang.StringBuilder-">appendTryBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/ExpectedExceptionCheck.html" title="class in randoop.test">ExpectedExceptionCheck</a></dt>
<dd>
<div class="block">Appends code to follow the statement throwing expected exception in try block.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/InvalidExceptionCheck.html#appendTryBehavior-java.lang.StringBuilder-">appendTryBehavior(StringBuilder)</a></span> - Method in class randoop.test.<a href="randoop/test/InvalidExceptionCheck.html" title="class in randoop.test">InvalidExceptionCheck</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedClassOperation.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedClassOperation.html" title="class in randoop.operation">TypedClassOperation</a></dt>
<dd>
<div class="block">Creates a <a href="randoop/operation/TypedOperation.html" title="class in randoop.operation"><code>TypedOperation</code></a> from this operation by using the given <a href="randoop/types/Substitution.html" title="class in randoop.types"><code>Substitution</code></a> on
type variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedClassOperationWithCast.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedClassOperationWithCast.html" title="class in randoop.operation">TypedClassOperationWithCast</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedOperation.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedOperation.html" title="class in randoop.operation">TypedOperation</a></dt>
<dd>
<div class="block">Applies the given substitution to the generic types in this operation, and returns a new
operation with the instantiated types.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedTermOperation.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedTermOperation.html" title="class in randoop.operation">TypedTermOperation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#apply-java.lang.Class-">apply(Class<?>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Applies the registered <a href="randoop/reflection/ClassVisitor.html" title="interface in randoop.reflection"><code>ClassVisitor</code></a> objects of this object to the given class and its
members that satisfy the given predicate.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#apply-randoop.reflection.ClassVisitor-java.lang.Class-">apply(ClassVisitor, Class<?>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Applies the given <a href="randoop/reflection/ClassVisitor.html" title="interface in randoop.reflection"><code>ClassVisitor</code></a> visitor to the class object and its members that satisfy
the predicate of this reflection manager.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ContractChecker.html#apply-java.util.List-">apply(List<ReferenceValue>)</a></span> - Method in class randoop.test.<a href="randoop/test/ContractChecker.html" title="class in randoop.test">ContractChecker</a></dt>
<dd>
<div class="block">Applies the contracts of this checker to the given tuple.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ArrayType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ArrayType.html" title="class in randoop.types">ArrayType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/CaptureTypeVariable.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types">CaptureTypeVariable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ClassOrInterfaceType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ClassOrInterfaceType.html" title="class in randoop.types">ClassOrInterfaceType</a></dt>
<dd>
<div class="block">Applies a substitution to a <a href="randoop/types/ReferenceType.html" title="class in randoop.types"><code>ReferenceType</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ClassOrInterfaceType.html#apply-randoop.types.Substitution-randoop.types.ClassOrInterfaceType-">apply(Substitution<ReferenceType>, ClassOrInterfaceType)</a></span> - Method in class randoop.types.<a href="randoop/types/ClassOrInterfaceType.html" title="class in randoop.types">ClassOrInterfaceType</a></dt>
<dd>
<div class="block">Applies the substitution to the enclosing type of this type and adds the result as the
enclosing class of the given type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/EagerReferenceBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/EagerReferenceBound.html" title="class in randoop.types">EagerReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ExplicitTypeVariable.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ExplicitTypeVariable.html" title="class in randoop.types">ExplicitTypeVariable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/GenericClassType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/GenericClassType.html" title="class in randoop.types">GenericClassType</a></dt>
<dd>
<div class="block">Instantiates this generic class using the substitution to replace the type parameters.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/InstantiatedType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/InstantiatedType.html" title="class in randoop.types">InstantiatedType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/IntersectionTypeBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/IntersectionTypeBound.html" title="class in randoop.types">IntersectionTypeBound</a></dt>
<dd>
<div class="block">Applies the given substitution to this type bound by replacing type variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyParameterBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/LazyParameterBound.html" title="class in randoop.types">LazyParameterBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyParameterBound.html#apply-java.lang.reflect.Type-randoop.types.Substitution-">apply(Type, Substitution<ReferenceType>)</a></span> - Static method in class randoop.types.<a href="randoop/types/LazyParameterBound.html" title="class in randoop.types">LazyParameterBound</a></dt>
<dd>
<div class="block">Applies a substitution to a reflection type that occurs as an actual argument of a
parameterized type bound, to create a type argument to a <a href="randoop/types/ParameterizedType.html" title="class in randoop.types"><code>ParameterizedType</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyReferenceBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/LazyReferenceBound.html" title="class in randoop.types">LazyReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/NonParameterizedType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/NonParameterizedType.html" title="class in randoop.types">NonParameterizedType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/NullReferenceType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/NullReferenceType.html" title="class in randoop.types">NullReferenceType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ParameterBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ParameterBound.html" title="class in randoop.types">ParameterBound</a></dt>
<dd>
<div class="block">Applies the given substitution to this type bound by replacing type variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ParameterizedType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ParameterizedType.html" title="class in randoop.types">ParameterizedType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceArgument.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ReferenceArgument.html" title="class in randoop.types">ReferenceArgument</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceBound.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ReferenceBound.html" title="class in randoop.types">ReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/ReferenceType.html" title="class in randoop.types">ReferenceType</a></dt>
<dd>
<div class="block">Applies a substitution to a <a href="randoop/types/ReferenceType.html" title="class in randoop.types"><code>ReferenceType</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/Type.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/Type.html" title="class in randoop.types">Type</a></dt>
<dd>
<div class="block">Returns the type created by instantiating the type parameters of this type with <a href="randoop/types/ReferenceType.html" title="class in randoop.types"><code>ReferenceType</code></a> objects.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/TypeArgument.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/TypeArgument.html" title="class in randoop.types">TypeArgument</a></dt>
<dd>
<div class="block">Applies the type substitution to this type argument.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/TypeTuple.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/TypeTuple.html" title="class in randoop.types">TypeTuple</a></dt>
<dd>
<div class="block">Applies a substitution to a type tuple, replacing any occurrences of type variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/TypeVariable.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/TypeVariable.html" title="class in randoop.types">TypeVariable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/WildcardArgument.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/WildcardArgument.html" title="class in randoop.types">WildcardArgument</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/WildcardType.html#apply-randoop.types.Substitution-">apply(Substitution<ReferenceType>)</a></span> - Method in class randoop.types.<a href="randoop/types/WildcardType.html" title="class in randoop.types">WildcardType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/TupleVisitor.html#apply-java.util.List-">apply(List<E>)</a></span> - Method in interface randoop.util.<a href="randoop/util/TupleVisitor.html" title="interface in randoop.util">TupleVisitor</a></dt>
<dd>
<div class="block">Transforms a list representing a tuple of a <a href="randoop/util/TupleSet.html" title="class in randoop.util"><code>TupleSet</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedClassOperation.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedClassOperation.html" title="class in randoop.operation">TypedClassOperation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedClassOperationWithCast.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedClassOperationWithCast.html" title="class in randoop.operation">TypedClassOperationWithCast</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedOperation.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedOperation.html" title="class in randoop.operation">TypedOperation</a></dt>
<dd>
<div class="block">Applies a capture conversion to the wildcard types of this operation, and returns a new
operation with new type variables for the wildcard types.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/TypedTermOperation.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.operation.<a href="randoop/operation/TypedTermOperation.html" title="class in randoop.operation">TypedTermOperation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ClassOrInterfaceType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/ClassOrInterfaceType.html" title="class in randoop.types">ClassOrInterfaceType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ClassOrInterfaceType.html#applyCaptureConversion-randoop.types.ClassOrInterfaceType-">applyCaptureConversion(ClassOrInterfaceType)</a></span> - Method in class randoop.types.<a href="randoop/types/ClassOrInterfaceType.html" title="class in randoop.types">ClassOrInterfaceType</a></dt>
<dd>
<div class="block">Applies capture conversion to the enclosing type of this type and adds the result as the
enclosing class of the given type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/EagerReferenceBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/EagerReferenceBound.html" title="class in randoop.types">EagerReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/GenericClassType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/GenericClassType.html" title="class in randoop.types">GenericClassType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/InstantiatedType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/InstantiatedType.html" title="class in randoop.types">InstantiatedType</a></dt>
<dd>
<div class="block">Constructs a capture conversion for this type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/IntersectionTypeBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/IntersectionTypeBound.html" title="class in randoop.types">IntersectionTypeBound</a></dt>
<dd>
<div class="block">Applies a capture conversion to any wildcard arguments in the type of this bound.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyParameterBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/LazyParameterBound.html" title="class in randoop.types">LazyParameterBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyReferenceBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/LazyReferenceBound.html" title="class in randoop.types">LazyReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/NonParameterizedType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/NonParameterizedType.html" title="class in randoop.types">NonParameterizedType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ParameterBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/ParameterBound.html" title="class in randoop.types">ParameterBound</a></dt>
<dd>
<div class="block">Applies a capture conversion to any wildcard arguments in the type of this bound.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceBound.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/ReferenceBound.html" title="class in randoop.types">ReferenceBound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/ReferenceType.html" title="class in randoop.types">ReferenceType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/Type.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/Type.html" title="class in randoop.types">Type</a></dt>
<dd>
<div class="block">Applies a capture conversion to this type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/TypeTuple.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/TypeTuple.html" title="class in randoop.types">TypeTuple</a></dt>
<dd>
<div class="block">Applies a capture conversion to each component of this type type tuple.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/WildcardArgument.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/WildcardArgument.html" title="class in randoop.types">WildcardArgument</a></dt>
<dd>
<div class="block">Applies a capture conversion to the bound of this <a href="randoop/types/WildcardArgument.html" title="class in randoop.types"><code>WildcardArgument</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/WildcardType.html#applyCaptureConversion--">applyCaptureConversion()</a></span> - Method in class randoop.types.<a href="randoop/types/WildcardType.html" title="class in randoop.types">WildcardType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#applyTo-randoop.reflection.ClassVisitor-java.lang.reflect.Field-">applyTo(ClassVisitor, Field)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Apply a visitor to a field.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#applyTo-randoop.reflection.ClassVisitor-java.lang.reflect.Constructor-">applyTo(ClassVisitor, Constructor<?>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Apply a visitor to a constructor.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#applyTo-randoop.reflection.ClassVisitor-java.lang.reflect.Method-">applyTo(ClassVisitor, Method)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Apply a visitor to a method.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#applyTo-randoop.reflection.ClassVisitor-java.lang.Enum-">applyTo(ClassVisitor, Enum<?>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Apply a visitor to a enum value.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ReflectionManager.html#applyToEnum-randoop.reflection.ClassVisitor-java.lang.Class-">applyToEnum(ClassVisitor, Class<?>)</a></span> - Method in class randoop.reflection.<a href="randoop/reflection/ReflectionManager.html" title="class in randoop.reflection">ReflectionManager</a></dt>
<dd>
<div class="block">Applies the visitors to the constants and methods of the given enum.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/InstantiatedType.html#argumentList">argumentList</a></span> - Variable in class randoop.types.<a href="randoop/types/InstantiatedType.html" title="class in randoop.types">InstantiatedType</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/WildcardArgument.html#argumentType">argumentType</a></span> - Variable in class randoop.types.<a href="randoop/types/WildcardArgument.html" title="class in randoop.types">WildcardArgument</a></dt>
<dd>
<div class="block">the wildcard type</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ArrayElementSet.html#ARRAY">ARRAY</a></span> - Variable in class randoop.operation.<a href="randoop/operation/ArrayElementSet.html" title="class in randoop.operation">ArrayElementSet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ARRAY_BLOCKING_QUEUE_TYPE">ARRAY_BLOCKING_QUEUE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>ArrayBlockingQueue</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ARRAY_DEQUE_TYPE">ARRAY_DEQUE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>ArrayDeque</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#ARRAY_LIST_TYPE">ARRAY_LIST_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>ArrayList</code></div>
</dd>
<dt><a href="randoop/operation/ArrayCreation.html" title="class in randoop.operation"><span class="typeNameLink">ArrayCreation</span></a> - Class in <a href="randoop/operation/package-summary.html">randoop.operation</a></dt>
<dd>
<div class="block"><code>ArrayCreation</code> is a <a href="randoop/operation/Operation.html" title="interface in randoop.operation"><code>Operation</code></a> representing the construction of a one-dimensional
array of a given type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ArrayCreation.html#ArrayCreation-randoop.types.ArrayType-">ArrayCreation(ArrayType)</a></span> - Constructor for class randoop.operation.<a href="randoop/operation/ArrayCreation.html" title="class in randoop.operation">ArrayCreation</a></dt>
<dd>
<div class="block">Creates an object representing the construction of an array of the given type.</div>
</dd>
<dt><a href="randoop/operation/ArrayElementSet.html" title="class in randoop.operation"><span class="typeNameLink">ArrayElementSet</span></a> - Class in <a href="randoop/operation/package-summary.html">randoop.operation</a></dt>
<dd>
<div class="block">Created by bjkeller on 8/19/16.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/ArrayElementSet.html#ArrayElementSet-randoop.types.Type-">ArrayElementSet(Type)</a></span> - Constructor for class randoop.operation.<a href="randoop/operation/ArrayElementSet.html" title="class in randoop.operation">ArrayElementSet</a></dt>
<dd> </dd>
<dt><a href="randoop/util/ArrayListSimpleList.html" title="class in randoop.util"><span class="typeNameLink">ArrayListSimpleList</span></a><<a href="randoop/util/ArrayListSimpleList.html" title="type parameter in ArrayListSimpleList">T</a>> - Class in <a href="randoop/util/package-summary.html">randoop.util</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ArrayListSimpleList.html#ArrayListSimpleList-java.util.ArrayList-">ArrayListSimpleList(ArrayList<T>)</a></span> - Constructor for class randoop.util.<a href="randoop/util/ArrayListSimpleList.html" title="class in randoop.util">ArrayListSimpleList</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ArrayListSimpleList.html#ArrayListSimpleList--">ArrayListSimpleList()</a></span> - Constructor for class randoop.util.<a href="randoop/util/ArrayListSimpleList.html" title="class in randoop.util">ArrayListSimpleList</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/ArrayListSimpleList.html#ArrayListSimpleList-int-">ArrayListSimpleList(int)</a></span> - Constructor for class randoop.util.<a href="randoop/util/ArrayListSimpleList.html" title="class in randoop.util">ArrayListSimpleList</a></dt>
<dd> </dd>
<dt><a href="randoop/types/ArrayType.html" title="class in randoop.types"><span class="typeNameLink">ArrayType</span></a> - Class in <a href="randoop/types/package-summary.html">randoop.types</a></dt>
<dd>
<div class="block">Represents an array type as defined in JLS, Section 4.3.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ArrayType.html#ArrayType-randoop.types.Type-java.lang.Class-">ArrayType(Type, Class<?>)</a></span> - Constructor for class randoop.types.<a href="randoop/types/ArrayType.html" title="class in randoop.types">ArrayType</a></dt>
<dd>
<div class="block">Creates an <code>ArrayType</code> with the given component type and runtime class.</div>
</dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="randoop/util/ClassFileConstants.html#bb">bb</a></span> - Static variable in class randoop.util.<a href="randoop/util/ClassFileConstants.html" title="class in randoop.util">ClassFileConstants</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#BEFORE_ALL">BEFORE_ALL</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The JUnit annotation for the BeforeAll option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#BEFORE_ALL_METHOD">BEFORE_ALL_METHOD</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The method name for the BeforeAll option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#BEFORE_EACH">BEFORE_EACH</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The JUnit annotation for the BeforeEach option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#BEFORE_EACH_METHOD">BEFORE_EACH_METHOD</a></span> - Static variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The method name for the BeforeEach option</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#beforeAllBody">beforeAllBody</a></span> - Variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The Java text for BeforeAll method of generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenTests.html#beforeAllFixtureBody">beforeAllFixtureBody</a></span> - Variable in class randoop.main.<a href="randoop/main/GenTests.html" title="class in randoop.main">GenTests</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/output/JUnitCreator.html#beforeEachBody">beforeEachBody</a></span> - Variable in class randoop.output.<a href="randoop/output/JUnitCreator.html" title="class in randoop.output">JUnitCreator</a></dt>
<dd>
<div class="block">The Java text for BeforeEach method of generated test class.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenTests.html#beforeEachFixtureBody">beforeEachFixtureBody</a></span> - Variable in class randoop.main.<a href="randoop/main/GenTests.html" title="class in randoop.main">GenTests</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/test/predicate/ExceptionBehaviorPredicate.html#behavior">behavior</a></span> - Variable in class randoop.test.predicate.<a href="randoop/test/predicate/ExceptionBehaviorPredicate.html" title="class in randoop.test.predicate">ExceptionBehaviorPredicate</a></dt>
<dd> </dd>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/Globals.html#blackHole">blackHole</a></span> - Static variable in class randoop.<a href="randoop/Globals.html" title="class in randoop">Globals</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#BLOCKING_DEQUE_TYPE">BLOCKING_DEQUE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>BlockingDeque</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JDKTypes.html#BLOCKING_QUEUE_TYPE">BLOCKING_QUEUE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JDKTypes.html" title="class in randoop.types">JDKTypes</a></dt>
<dd>
<div class="block">The <a href="randoop/types/GenericClassType.html" title="class in randoop.types"><code>GenericClassType</code></a> for <code>BlockingQueue</code></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/JavaTypes.html#BOOLEAN_TYPE">BOOLEAN_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JavaTypes.html" title="class in randoop.types">JavaTypes</a></dt>
<dd>
<div class="block">The boolean <a href="randoop/types/PrimitiveType.html" title="class in randoop.types"><code>PrimitiveType</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/Globals.html#bos">bos</a></span> - Static variable in class randoop.<a href="randoop/Globals.html" title="class in randoop">Globals</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/IntersectionTypeBound.html#boundList">boundList</a></span> - Variable in class randoop.types.<a href="randoop/types/IntersectionTypeBound.html" title="class in randoop.types">IntersectionTypeBound</a></dt>
<dd>
<div class="block">the list of type bounds for the intersection bound</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/LazyParameterBound.html#boundType">boundType</a></span> - Variable in class randoop.types.<a href="randoop/types/LazyParameterBound.html" title="class in randoop.types">LazyParameterBound</a></dt>
<dd>
<div class="block">the type for this bound</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/ReferenceBound.html#boundType">boundType</a></span> - Variable in class randoop.types.<a href="randoop/types/ReferenceBound.html" title="class in randoop.types">ReferenceBound</a></dt>
<dd>
<div class="block">The type for this bound</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/PrimitiveTypes.html#boxedToPrimitive">boxedToPrimitive</a></span> - Static variable in class randoop.types.<a href="randoop/types/PrimitiveTypes.html" title="class in randoop.types">PrimitiveTypes</a></dt>
<dd>
<div class="block">Map from boxed primitive to primitive <code>Class<?></code> objects.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/TestCoverageInfo.html#branchFalse">branchFalse</a></span> - Variable in class randoop.util.<a href="randoop/util/TestCoverageInfo.html" title="class in randoop.util">TestCoverageInfo</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/TestCoverageInfo.html#branchTrue">branchTrue</a></span> - Variable in class randoop.util.<a href="randoop/util/TestCoverageInfo.html" title="class in randoop.util">TestCoverageInfo</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/StreamRedirectThread.html#BUFFER_SIZE">BUFFER_SIZE</a></span> - Static variable in class randoop.util.<a href="randoop/util/StreamRedirectThread.html" title="class in randoop.util">StreamRedirectThread</a></dt>
<dd> </dd>
<dt><a href="randoop/BugInRandoopException.html" title="class in randoop"><span class="typeNameLink">BugInRandoopException</span></a> - Exception in <a href="randoop/package-summary.html">randoop</a></dt>
<dd>
<div class="block">Thrown to indicate exceptional behavior that definitely indicates a bug in Randoop.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/BugInRandoopException.html#BugInRandoopException--">BugInRandoopException()</a></span> - Constructor for exception randoop.<a href="randoop/BugInRandoopException.html" title="class in randoop">BugInRandoopException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/BugInRandoopException.html#BugInRandoopException-java.lang.String-">BugInRandoopException(String)</a></span> - Constructor for exception randoop.<a href="randoop/BugInRandoopException.html" title="class in randoop">BugInRandoopException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/BugInRandoopException.html#BugInRandoopException-java.lang.Exception-">BugInRandoopException(Exception)</a></span> - Constructor for exception randoop.<a href="randoop/BugInRandoopException.html" title="class in randoop">BugInRandoopException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/BugInRandoopException.html#BugInRandoopException-java.lang.Throwable-">BugInRandoopException(Throwable)</a></span> - Constructor for exception randoop.<a href="randoop/BugInRandoopException.html" title="class in randoop">BugInRandoopException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/HelperSequenceCreator.html#buildAddSequence-randoop.sequence.Sequence-randoop.sequence.Sequence-randoop.generation.HelperSequenceCreator.SequenceExtender-">buildAddSequence(Sequence, Sequence, HelperSequenceCreator.SequenceExtender)</a></span> - Static method in class randoop.generation.<a href="randoop/generation/HelperSequenceCreator.html" title="class in randoop.generation">HelperSequenceCreator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/JavaTypes.html#BYTE_TYPE">BYTE_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JavaTypes.html" title="class in randoop.types">JavaTypes</a></dt>
<dd>
<div class="block">The byte <a href="randoop/types/PrimitiveType.html" title="class in randoop.types"><code>PrimitiveType</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/compile/SequenceJavaFileObject.html#byteCode">byteCode</a></span> - Variable in class randoop.compile.<a href="randoop/compile/SequenceJavaFileObject.html" title="class in randoop.compile">SequenceJavaFileObject</a></dt>
<dd> </dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="randoop/util/ClassFileConstants.html#c">c</a></span> - Static variable in class randoop.util.<a href="randoop/util/ClassFileConstants.html" title="class in randoop.util">ClassFileConstants</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/EqualsMethodMatcher.html#cache">cache</a></span> - Variable in class randoop.generation.<a href="randoop/generation/EqualsMethodMatcher.html" title="class in randoop.generation">EqualsMethodMatcher</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/OptionsCache.html#cacheList">cacheList</a></span> - Variable in class randoop.main.<a href="randoop/main/OptionsCache.html" title="class in randoop.main">OptionsCache</a></dt>
<dd>
<div class="block">The list of caches for classes with Options annotations.</div>
</dd>
<dt><a href="randoop/operation/CallableOperation.html" title="class in randoop.operation"><span class="typeNameLink">CallableOperation</span></a> - Class in <a href="randoop/operation/package-summary.html">randoop.operation</a></dt>
<dd>
<div class="block">CallableOperation is an abstract implementation of the Operation interface to provide default
implementations of Operation predicates that are false except for a few kinds of operations.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/operation/CallableOperation.html#CallableOperation--">CallableOperation()</a></span> - Constructor for class randoop.operation.<a href="randoop/operation/CallableOperation.html" title="class in randoop.operation">CallableOperation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/TypeVariable.html#canBeInstantiatedBy-randoop.types.ReferenceType-">canBeInstantiatedBy(ReferenceType)</a></span> - Method in class randoop.types.<a href="randoop/types/TypeVariable.html" title="class in randoop.types">TypeVariable</a></dt>
<dd>
<div class="block">Indicates whether this <a href="randoop/types/TypeVariable.html" title="class in randoop.types"><code>TypeVariable</code></a> can be instantiated by the <a href="randoop/types/ReferenceType.html" title="class in randoop.types"><code>ReferenceType</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/ListEnumerator.html#candidates">candidates</a></span> - Variable in class randoop.reflection.<a href="randoop/reflection/ListEnumerator.html" title="class in randoop.reflection">ListEnumerator</a></dt>
<dd>
<div class="block">Lists of candidate values for each position in generated lists.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#canUseShortForm--">canUseShortForm()</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Variable.html#canUseShortForm--">canUseShortForm()</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Variable.html" title="class in randoop.sequence">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#capture_output">capture_output</a></span> - Static variable in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd> </dd>
<dt><a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types"><span class="typeNameLink">CaptureTypeVariable</span></a> - Class in <a href="randoop/types/package-summary.html">randoop.types</a></dt>
<dd>
<div class="block">Represents a type variable introduced by capture conversion over a wildcard type argument.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/CaptureTypeVariable.html#CaptureTypeVariable-randoop.types.WildcardArgument-">CaptureTypeVariable(WildcardArgument)</a></span> - Constructor for class randoop.types.<a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types">CaptureTypeVariable</a></dt>
<dd>
<div class="block">Creates a <a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types"><code>CaptureTypeVariable</code></a> for the given wildcard.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/types/CaptureTypeVariable.html#CaptureTypeVariable-int-randoop.types.WildcardArgument-randoop.types.ParameterBound-randoop.types.ParameterBound-">CaptureTypeVariable(int, WildcardArgument, ParameterBound, ParameterBound)</a></span> - Constructor for class randoop.types.<a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types">CaptureTypeVariable</a></dt>
<dd>
<div class="block">Creates a <a href="randoop/types/CaptureTypeVariable.html" title="class in randoop.types"><code>CaptureTypeVariable</code></a> with explicitly given <code>ID</code>, wildcard, and bounds.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ExceptionCheck.html#catchClassName">catchClassName</a></span> - Variable in class randoop.test.<a href="randoop/test/ExceptionCheck.html" title="class in randoop.test">ExceptionCheck</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/types/JavaTypes.html#CHAR_TYPE">CHAR_TYPE</a></span> - Static variable in class randoop.types.<a href="randoop/types/JavaTypes.html" title="class in randoop.types">JavaTypes</a></dt>
<dd>
<div class="block">The char <a href="randoop/types/PrimitiveType.html" title="class in randoop.types"><code>PrimitiveType</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/condition/Condition.html#check-java.lang.Object:A-">check(Object[])</a></span> - Method in interface randoop.condition.<a href="randoop/condition/Condition.html" title="interface in randoop.condition">Condition</a></dt>
<dd>
<div class="block">Indicate whether this condition is satisfied by the given values.</div>
</dd>
<dt><a href="randoop/test/Check.html" title="interface in randoop.test"><span class="typeNameLink">Check</span></a> - Interface in <a href="randoop/test/package-summary.html">randoop.test</a></dt>
<dd>
<div class="block">A Check represents the expected runtime behavior of a Sequence, at a particular offset.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/InvalidChecks.html#check">check</a></span> - Variable in class randoop.test.<a href="randoop/test/InvalidChecks.html" title="class in randoop.test">InvalidChecks</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#check_compilable">check_compilable</a></span> - Static variable in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd>
<div class="block">Whether to check that generated sequences can be compiled.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkAccept-java.lang.String-int-">checkAccept(String, int)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkAccess-java.lang.Thread-">checkAccess(Thread)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkAccess-java.lang.ThreadGroup-">checkAccess(ThreadGroup)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/instrument/ExercisedClassVisitor.html#checkAndReset-java.lang.Class-">checkAndReset(Class<?>)</a></span> - Method in class randoop.instrument.<a href="randoop/instrument/ExercisedClassVisitor.html" title="class in randoop.instrument">ExercisedClassVisitor</a></dt>
<dd>
<div class="block">Calls the coverage instrumentation method.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkAwtEventQueueAccess--">checkAwtEventQueueAccess()</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkConnect-java.lang.String-int-java.lang.Object-">checkConnect(String, int, Object)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkConnect-java.lang.String-int-">checkConnect(String, int)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/test/ContractChecker.html#checkContract-randoop.contract.ObjectContract-java.lang.Object:A-">checkContract(ObjectContract, Object[])</a></span> - Method in class randoop.test.<a href="randoop/test/ContractChecker.html" title="class in randoop.test">ContractChecker</a></dt>
<dd>
<div class="block">Checks a contract on a particular array of values.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkCreateClassLoader--">checkCreateClassLoader()</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkDelete-java.lang.String-">checkDelete(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#checked_exception">checked_exception</a></span> - Static variable in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd>
<div class="block">If a test throws a checked exception, should it be included in the error-revealing test suite
(value: ERROR), regression test suite (value: EXPECTED), or should it be discarded (value:
INVALID)?</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkExec-java.lang.String-">checkExec(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkExit-int-">checkExit(int)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/generation/AbstractGenerator.html#checkGenerator">checkGenerator</a></span> - Variable in class randoop.generation.<a href="randoop/generation/AbstractGenerator.html" title="class in randoop.generation">AbstractGenerator</a></dt>
<dd>
<div class="block">Visitor to generate checks for a sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#checkIndex-int-">checkIndex(int)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#checkInputs-randoop.operation.TypedOperation-java.util.List-">checkInputs(TypedOperation, List<Variable>)</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkLink-java.lang.String-">checkLink(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkListen-int-">checkListen(int)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkMemberAccess-java.lang.Class-int-">checkMemberAccess(Class<?>, int)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkMulticast-java.net.InetAddress-byte-">checkMulticast(InetAddress, byte)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkMulticast-java.net.InetAddress-">checkMulticast(InetAddress)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/main/GenInputsAbstract.html#checkOptionsValid--">checkOptionsValid()</a></span> - Method in class randoop.main.<a href="randoop/main/GenInputsAbstract.html" title="class in randoop.main">GenInputsAbstract</a></dt>
<dd>
<div class="block">Check that the options given satisfy any specified constraints, and fail if they do not.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPackageAccess-java.lang.String-">checkPackageAccess(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPackageDefinition-java.lang.String-">checkPackageDefinition(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPermission-java.security.Permission-java.lang.Object-">checkPermission(Permission, Object)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPermission-java.security.Permission-">checkPermission(Permission)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPrintJobAccess--">checkPrintJobAccess()</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPropertiesAccess--">checkPropertiesAccess()</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkPropertyAccess-java.lang.String-">checkPropertyAccess(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkRead-java.io.FileDescriptor-">checkRead(FileDescriptor)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkRead-java.lang.String-java.lang.Object-">checkRead(String, Object)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/util/RandoopSecurityManager.html#checkRead-java.lang.String-">checkRead(String)</a></span> - Method in class randoop.util.<a href="randoop/util/RandoopSecurityManager.html" title="class in randoop.util">RandoopSecurityManager</a></dt>
<dd> </dd>
<dt><a href="randoop/CheckRep.html" title="annotation in randoop"><span class="typeNameLink">CheckRep</span></a> - Annotation Type in <a href="randoop/package-summary.html">randoop</a></dt>
<dd>
<div class="block">Write this annotation on a method to specify that that the method checks a representation
invariant.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/Sequence.html#checkRep--">checkRep()</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/Sequence.html" title="class in randoop.sequence">Sequence</a></dt>
<dd>
<div class="block">Representation invariant check.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/SequenceCollection.html#checkRep--">checkRep()</a></span> - Method in class randoop.sequence.<a href="randoop/sequence/SequenceCollection.html" title="class in randoop.sequence">SequenceCollection</a></dt>
<dd> </dd>
<dt><a href="randoop/contract/CheckRepContract.html" title="class in randoop.contract"><span class="typeNameLink">CheckRepContract</span></a> - Class in <a href="randoop/contract/package-summary.html">randoop.contract</a></dt>
<dd>
<div class="block">Represents the contract that an object must conform to its representation invariant, as expressed
in a user-supplied representation check method.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/contract/CheckRepContract.html#CheckRepContract-java.lang.reflect.Method-">CheckRepContract(Method)</a></span> - Constructor for class randoop.contract.<a href="randoop/contract/CheckRepContract.html" title="class in randoop.contract">CheckRepContract</a></dt>
<dd> </dd>
<dt><a href="randoop/reflection/CheckRepExtractor.html" title="class in randoop.reflection"><span class="typeNameLink">CheckRepExtractor</span></a> - Class in <a href="randoop/reflection/package-summary.html">randoop.reflection</a></dt>
<dd>
<div class="block"><code>CheckRepExtractor</code> is a <a href="randoop/reflection/ClassVisitor.html" title="interface in randoop.reflection"><code>ClassVisitor</code></a> that inspects the methods passed to it to see
if they are annotated with <a href="randoop/CheckRep.html" title="annotation in randoop"><code>CheckRep</code></a>, are non-static, and have either a <code>boolean</code> or <code>void</code> return type.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/reflection/CheckRepExtractor.html#CheckRepExtractor-randoop.test.ContractSet-">CheckRepExtractor(ContractSet)</a></span> - Constructor for class randoop.reflection.<a href="randoop/reflection/CheckRepExtractor.html" title="class in randoop.reflection">CheckRepExtractor</a></dt>
<dd>
<div class="block">Creates a visitor with an empty contracts set.</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/contract/CheckRepContract.html#checkRepMethod">checkRepMethod</a></span> - Variable in class randoop.contract.<a href="randoop/contract/CheckRepContract.html" title="class in randoop.contract">CheckRepContract</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="randoop/sequence/ExecutableSequence.html#checks">checks</a></span> - Variable in class randoop.sequence.<a href="randoop/sequence/ExecutableSequence.html" title="class in randoop.sequence">ExecutableSequence</a></dt>
<dd>
<div class="block">The checks for this sequence</div>
</dd>
<dt><span class="memberNameLink"><a href="randoop/test/ErrorRevealingChecks.html#checks">checks</a></span> - Variable in class randoop.test.<a href="randoop/test/ErrorRevealingChecks.html" title="class in randoop.test">ErrorRevealingChecks</a></dt>