-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-all.html
3864 lines (3847 loc) · 486 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>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_33) on Thu Jun 28 17:14:41 PDT 2012 -->
<TITLE>
Index
</TITLE>
<META NAME="date" CONTENT="2012-06-28">
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<B>Version: 1.1.0</B></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_Y_">Y</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/abbreviation/Abbreviations.html" title="interface in gov.nasa.arc.mct.abbreviation"><B>Abbreviations</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/abbreviation/package-summary.html">gov.nasa.arc.mct.abbreviation</A><DD>Defines a data structure that represents the set of abbreviations available
for words and phrases in a string.<DT><A HREF="./gov/nasa/arc/mct/abbreviation/AbbreviationService.html" title="interface in gov.nasa.arc.mct.abbreviation"><B>AbbreviationService</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/abbreviation/package-summary.html">gov.nasa.arc.mct.abbreviation</A><DD>Defines a service for finding and applying standard abbreviations for
words and phrases.<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components"><B>AbstractComponent</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>The superclass of every component type.<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#AbstractComponent()"><B>AbstractComponent()</B></A> -
Constructor for class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.ResetPropertiesTransaction.html" title="interface in gov.nasa.arc.mct.components"><B>AbstractComponent.ResetPropertiesTransaction</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>Defines a transaction to reset component properties.<DT><A HREF="./gov/nasa/arc/mct/services/component/AbstractComponentProvider.html" title="class in gov.nasa.arc.mct.services.component"><B>AbstractComponentProvider</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>An abstract class that implements <code>ComponentProvider</code>.<DT><A HREF="./gov/nasa/arc/mct/services/component/AbstractComponentProvider.html#AbstractComponentProvider()"><B>AbstractComponentProvider()</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/AbstractComponentProvider.html" title="class in gov.nasa.arc.mct.services.component">AbstractComponentProvider</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/component/AbstractProviderDelegate.html" title="class in gov.nasa.arc.mct.services.component"><B>AbstractProviderDelegate</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>An abstract class that implements <code>ProviderDelegate</code>.<DT><A HREF="./gov/nasa/arc/mct/services/component/AbstractProviderDelegate.html#AbstractProviderDelegate()"><B>AbstractProviderDelegate()</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/AbstractProviderDelegate.html" title="class in gov.nasa.arc.mct.services.component">AbstractProviderDelegate</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/AbstractViewListener.html" title="class in gov.nasa.arc.mct.gui"><B>AbstractViewListener</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>A skeleton implementation of <A HREF="./gov/nasa/arc/mct/gui/ViewListener.html" title="interface in gov.nasa.arc.mct.gui"><CODE>ViewListener</CODE></A>.<DT><A HREF="./gov/nasa/arc/mct/gui/AbstractViewListener.html#AbstractViewListener()"><B>AbstractViewListener()</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/AbstractViewListener.html" title="class in gov.nasa.arc.mct.gui">AbstractViewListener</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionContext.html" title="interface in gov.nasa.arc.mct.gui"><B>ActionContext</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This interface defines the context information passed to a <A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui"><CODE>ContextAwareAction</CODE></A>.<DT><A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html" title="class in gov.nasa.arc.mct.gui"><B>ActionContextImpl</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This class defines a context for executing actions.<DT><A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html#ActionContextImpl()"><B>ActionContextImpl()</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html" title="class in gov.nasa.arc.mct.gui">ActionContextImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionManager.html" title="class in gov.nasa.arc.mct.gui"><B>ActionManager</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This class manages the actions in MCT.<DT><A HREF="./gov/nasa/arc/mct/gui/ActionManager.html#ActionManager()"><B>ActionManager()</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionManager.html" title="class in gov.nasa.arc.mct.gui">ActionManager</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInEnumAction.html#actionPerformed(java.awt.event.ActionEvent)"><B>actionPerformed(ActionEvent)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInEnumAction.html" title="class in gov.nasa.arc.mct.evaluator.enums">PlaceObjectsInEnumAction</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInMultiAction.html#actionPerformed(java.awt.event.ActionEvent)"><B>actionPerformed(ActionEvent)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInMultiAction.html" title="class in gov.nasa.arc.mct.evaluator.enums">PlaceObjectsInMultiAction</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/AbstractViewListener.html#actionPerformed(javax.swing.event.TreeExpansionEvent)"><B>actionPerformed(TreeExpansionEvent)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/AbstractViewListener.html" title="class in gov.nasa.arc.mct.gui">AbstractViewListener</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#actionPerformed(java.awt.event.ActionEvent)"><B>actionPerformed(ActionEvent)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui">ContextAwareAction</A>
<DD>This method should be overridden with the implementation that performs this action.
<DT><A HREF="./gov/nasa/arc/mct/gui/ViewListener.html#actionPerformed(javax.swing.event.TreeExpansionEvent)"><B>actionPerformed(TreeExpansionEvent)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ViewListener.html" title="interface in gov.nasa.arc.mct.gui">ViewListener</A>
<DD>Performs any action necessary when a node in the directory
tree corresponding to the view manifestation is expanded
or collapsed.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html#ACTIVE_BORDER"><B>ACTIVE_BORDER</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html" title="class in gov.nasa.arc.mct.gui">MCTGUIResourceBundle</A>
<DD>The border to use for a selected view manifestation.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html#ACTIVE_COLOR"><B>ACTIVE_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html" title="class in gov.nasa.arc.mct.gui">MCTGUIResourceBundle</A>
<DD>The color for the title bar on a selected view manifestation.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html#add(javax.swing.tree.MutableTreeNode)"><B>add(MutableTreeNode)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html" title="class in gov.nasa.arc.mct.gui">MCTMutableTreeNode</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#add(java.awt.Component)"><B>add(Component)</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Finishes constraint building and adds a component to the container
using the resulting constraints.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#add(java.awt.Component...)"><B>add(Component...)</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Finishes constraint building and adds a sequence of components to the
container using the resulting constraints.
<DT><A HREF="./gov/nasa/arc/mct/util/LinkedHashSet.html#add(E)"><B>add(E)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LinkedHashSet.html" title="class in gov.nasa.arc.mct.util">LinkedHashSet</A>
<DD>Adds to the hash set.
<DT><A HREF="./gov/nasa/arc/mct/util/LRUSet.html#add(T)"><B>add(T)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LRUSet.html" title="class in gov.nasa.arc.mct.util">LRUSet</A>
<DD>Adds to the set.
<DT><A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html#add(T)"><B>add(T)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html" title="class in gov.nasa.arc.mct.util">WeakHashSet</A>
<DD>Adds the designated object to the hash set.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#addBorder(java.lang.Integer)"><B>addBorder(Integer)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Adds a border if it isn't already present.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#addBorder(java.lang.Integer)"><B>addBorder(Integer)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/HidableTabbedPane.html#addChangeListener(javax.swing.event.ChangeListener)"><B>addChangeListener(ChangeListener)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/HidableTabbedPane.html" title="class in gov.nasa.arc.mct.gui">HidableTabbedPane</A>
<DD>Add a listener to notify when the currently selected tab changes.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html#addChild(int, gov.nasa.arc.mct.gui.MCTMutableTreeNode, java.beans.PropertyChangeListener)"><B>addChild(int, MCTMutableTreeNode, PropertyChangeListener)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html" title="class in gov.nasa.arc.mct.gui">MCTMutableTreeNode</A>
<DD>Adds a child node and registers the <code>PropertyChangeListener</code> to
the view of this child node.
<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events"><B>AddChildEvent</B></A> - Class in <A HREF="./gov/nasa/arc/mct/roles/events/package-summary.html">gov.nasa.arc.mct.roles.events</A><DD>Implements an event that is generated when a child component is added.<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html#AddChildEvent(java.lang.Object, gov.nasa.arc.mct.components.AbstractComponent)"><B>AddChildEvent(Object, AbstractComponent)</B></A> -
Constructor for class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">AddChildEvent</A>
<DD>Creates an add child event with the given component as the event source,
and the newly added child component.
<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html#AddChildEvent(java.lang.Object, gov.nasa.arc.mct.components.AbstractComponent, java.awt.Point)"><B>AddChildEvent(Object, AbstractComponent, Point)</B></A> -
Constructor for class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">AddChildEvent</A>
<DD>Creates an add child event with the component that is the event source,
the new child component, and the point within the parent canvas area
where the child manifestation should reside.
<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html#AddChildEvent(java.lang.Object, gov.nasa.arc.mct.components.AbstractComponent, int)"><B>AddChildEvent(Object, AbstractComponent, int)</B></A> -
Constructor for class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">AddChildEvent</A>
<DD>Creates an add child event with the component that is the event source,
the new child component, and the point within the parent canvas area
where the child manifestation should reside.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#addDelegateComponent(gov.nasa.arc.mct.components.AbstractComponent)"><B>addDelegateComponent(AbstractComponent)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Adds a new delegate (child) component.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#addDelegateComponents(java.util.Collection)"><B>addDelegateComponents(Collection<AbstractComponent>)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Adds new delegate (child) components to this component.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#addDelegateComponents(int, java.util.Collection)"><B>addDelegateComponents(int, Collection<AbstractComponent>)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Adds new delegate (child) components to this component.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#addDelegateComponentsCallback(java.util.Collection)"><B>addDelegateComponentsCallback(Collection<AbstractComponent>)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Invoked after any of the <code>addDelegateComponents</code> methods are invoked.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html#addExp(gov.nasa.arc.mct.evaluator.expressions.Expression)"><B>addExp(Expression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionList</A>
<DD>Adds the expression to the list.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html#addExp(int, gov.nasa.arc.mct.evaluator.expressions.Expression)"><B>addExp(int, Expression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionList</A>
<DD>Adds the expression to the list based on the index number and expression object.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html#addExp(gov.nasa.arc.mct.evaluator.expressions.MultiRuleExpression)"><B>addExp(MultiRuleExpression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiRuleExpressionList</A>
<DD>Adds the expression to the list.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html#addExp(int, gov.nasa.arc.mct.evaluator.expressions.MultiRuleExpression)"><B>addExp(int, MultiRuleExpression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiRuleExpressionList</A>
<DD>Adds the expression to the list based on the index number and expression object.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#addInfoProperty(java.lang.String, java.lang.String)"><B>addInfoProperty(String, String)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Add a property.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#addInfoProperty(java.lang.String, java.lang.String)"><B>addInfoProperty(String, String)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/MenuSection.html#addMenuItemInfo(gov.nasa.arc.mct.gui.MenuItemInfo)"><B>addMenuItemInfo(MenuItemInfo)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MenuSection.html" title="class in gov.nasa.arc.mct.gui">MenuSection</A>
<DD>Adds a MenuItemInfo to this section.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html#addMenuItemInfos(java.lang.String, java.util.Collection)"><B>addMenuItemInfos(String, Collection<MenuItemInfo>)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html" title="class in gov.nasa.arc.mct.gui">ContextAwareMenu</A>
<DD>This method associates a collection of <A HREF="./gov/nasa/arc/mct/gui/MenuItemInfo.html" title="class in gov.nasa.arc.mct.gui"><CODE>MenuItemInfo</CODE></A> to the menubarPath.
<DT><A HREF="./gov/nasa/arc/mct/gui/View.html#addMonitoredGUI(T)"><B>addMonitoredGUI(T)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/View.html" title="class in gov.nasa.arc.mct.gui">View</A>
<DD>Adds a related GUI component that will be updated when this
one is.
<DT><A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html#addObserver(java.util.Observer)"><B>addObserver(Observer)</B></A> -
Method in interface gov.nasa.arc.mct.connection.<A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html" title="interface in gov.nasa.arc.mct.connection">ConnectionStatus</A>
<DD>Add observer.
<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html#addProperty(java.lang.String, java.lang.Object)"><B>addProperty(String, Object)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html" title="class in gov.nasa.arc.mct.components">ExtendedProperties</A>
<DD>Add a property.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/Updatable.html#addReferences(java.util.List)"><B>addReferences(List<AbstractComponent>)</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/Updatable.html" title="interface in gov.nasa.arc.mct.services.internal.component">Updatable</A>
<DD>Adds a list of abstract component references.
<DT><A HREF="./gov/nasa/arc/mct/gui/SelectionProvider.html#addSelectionChangeListener(java.beans.PropertyChangeListener)"><B>addSelectionChangeListener(PropertyChangeListener)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/SelectionProvider.html" title="interface in gov.nasa.arc.mct.gui">SelectionProvider</A>
<DD>Adds a listener to receive events when the set of selected manifestations
changes.
<DT><A HREF="./gov/nasa/arc/mct/gui/HidableTabbedPane.html#addTab(java.lang.String, java.awt.Component)"><B>addTab(String, Component)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/HidableTabbedPane.html" title="class in gov.nasa.arc.mct.gui">HidableTabbedPane</A>
<DD>Add a new tab with a textual title and content area component.
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html#addTargetViewComponent(javax.swing.JComponent)"><B>addTargetViewComponent(JComponent)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html" title="class in gov.nasa.arc.mct.gui">ActionContextImpl</A>
<DD>Adds another target view manifestation for an action.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#addToColorMap(java.lang.String, java.awt.Color)"><B>addToColorMap(String, Color)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Add key/value pair to color map.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#addToDefaultSettingsMap(java.lang.String, java.lang.String)"><B>addToDefaultSettingsMap(String, String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Adds to default color map settings.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#addViewManifestation(gov.nasa.arc.mct.gui.View)"><B>addViewManifestation(View)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Adds a view manifestation that should be alerted to changes in this component.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html#addViewRoleProperties(java.lang.String, gov.nasa.arc.mct.components.ExtendedProperties)"><B>addViewRoleProperties(String, ExtendedProperties)</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html" title="interface in gov.nasa.arc.mct.services.internal.component">ComponentInitializer</A>
<DD>Adds view role properties.
<DT><A HREF="./gov/nasa/arc/mct/gui/SplittablePane.html#adjustDivider()"><B>adjustDivider()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/SplittablePane.html" title="class in gov.nasa.arc.mct.gui">SplittablePane</A>
<DD>Restores a previous divider location, if we remembered one, else set
divider location to the default position.
<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html#applyColorScheme()"><B>applyColorScheme()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util">ColorScheme</A>
<DD>Inserts all non-wildcard entries into the UIManager.
<DT><A HREF="./gov/nasa/arc/mct/gui/FileChooser.html#APPROVE_OPTION"><B>APPROVE_OPTION</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FileChooser.html" title="class in gov.nasa.arc.mct.gui">FileChooser</A>
<DD>Return value if approve (yes, ok) is chosen.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#at(int, int)"><B>at(int, int)</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Sets the grid position of a component.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/impl/MCTCountDownLatchImpl.html#await()"><B>await()</B></A> -
Method in class gov.nasa.arc.mct.services.internal.component.impl.<A HREF="./gov/nasa/arc/mct/services/internal/component/impl/MCTCountDownLatchImpl.html" title="class in gov.nasa.arc.mct.services.internal.component.impl">MCTCountDownLatchImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/MCTCountDownLatch.html#await()"><B>await()</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/MCTCountDownLatch.html" title="interface in gov.nasa.arc.mct.services.internal.component">MCTCountDownLatch</A>
<DD>Awaiting count down.
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#BACKGROUND_COLOR"><B>BACKGROUND_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Button background color.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#baseline_centered()"><B>baseline_centered()</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Sets the anchor position so that the component will be centered
in its cell, with its baseline aligned with the baselines of
other components in the same row.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#baseline_e()"><B>baseline_e()</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Sets the anchor position so that the component will be right-aligned
in its cell, with its baseline aligned with the baselines of
other components in the same row.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#baseline_w()"><B>baseline_w()</B></A> -
Method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Sets the anchor position so that the component will be left-aligned
in its cell, with its baseline aligned with the baselines of
other components in the same row.
<DT><A HREF="./gov/nasa/arc/mct/util/BatchLoader.html" title="interface in gov.nasa.arc.mct.util"><B>BatchLoader</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Interface for loading telemetry into MCT database.<DT><A HREF="./gov/nasa/arc/mct/util/BatchLoaderImpl.html" title="class in gov.nasa.arc.mct.util"><B>BatchLoaderImpl</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Telemetry batch loader.<DT><A HREF="./gov/nasa/arc/mct/util/BatchLoaderImpl.html#BatchLoaderImpl(java.lang.Class)"><B>BatchLoaderImpl(Class<? extends AbstractComponent>)</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/BatchLoaderImpl.html" title="class in gov.nasa.arc.mct.util">BatchLoaderImpl</A>
<DD>Instantiate a batch loader.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#BORDER"><B>BORDER</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui">ContextAwareAction</A>
<DD>Used in the client property to indicate border style for this action when appeared as a menu item.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_BOTTOM"><B>BORDER_BOTTOM</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating the bottom border of a panel.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_LEFT"><B>BORDER_LEFT</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating the left border of a panel.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_RIGHT"><B>BORDER_RIGHT</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating the right border of a panel.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_STYLE_DASHED"><B>BORDER_STYLE_DASHED</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating that a border is a dashed line border.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_STYLE_DOTS"><B>BORDER_STYLE_DOTS</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating that a border is a dotted line border.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_STYLE_DOUBLE"><B>BORDER_STYLE_DOUBLE</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating that a border is a double-line border.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_STYLE_MIXED"><B>BORDER_STYLE_MIXED</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating that a border is a mixed, dot-dash border.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_STYLE_SINGLE"><B>BORDER_STYLE_SINGLE</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating that a border is a single-line border.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#BORDER_TOP"><B>BORDER_TOP</B></A> -
Static variable in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>A flag indicating the top border of a panel.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#borderColorRGB"><B>borderColorRGB</B></A> -
Variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>The color to use for the borders.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html#BORDERLINE_SIZE"><B>BORDERLINE_SIZE</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTGUIResourceBundle.html" title="class in gov.nasa.arc.mct.gui">MCTGUIResourceBundle</A>
<DD>The width of the thick border on a selected view manifestation.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#borders"><B>borders</B></A> -
Variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>Settings for all four borders.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#borderStyle"><B>borderStyle</B></A> -
Variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>The border style to use.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/GUIDefaults.html#BOTTOM_MARGIN"><B>BOTTOM_MARGIN</B></A> -
Static variable in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/GUIDefaults.html" title="class in gov.nasa.arc.mct.gui.util">GUIDefaults</A>
<DD>Default bottom margin.
<DT><A HREF="./gov/nasa/arc/mct/api/feed/BufferFullException.html" title="class in gov.nasa.arc.mct.api.feed"><B>BufferFullException</B></A> - Exception in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>Buffer full exception wrapper.<DT><A HREF="./gov/nasa/arc/mct/api/feed/BufferFullException.html#BufferFullException()"><B>BufferFullException()</B></A> -
Constructor for exception gov.nasa.arc.mct.api.feed.<A HREF="./gov/nasa/arc/mct/api/feed/BufferFullException.html" title="class in gov.nasa.arc.mct.api.feed">BufferFullException</A>
<DD>Default constructor.
<DT><A HREF="./gov/nasa/arc/mct/api/feed/BufferFullException.html#BufferFullException(java.lang.String)"><B>BufferFullException(String)</B></A> -
Constructor for exception gov.nasa.arc.mct.api.feed.<A HREF="./gov/nasa/arc/mct/api/feed/BufferFullException.html" title="class in gov.nasa.arc.mct.api.feed">BufferFullException</A>
<DD>Overloaded constructor with single message argument.
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html#callUnderColorScheme(java.util.concurrent.Callable)"><B>callUnderColorScheme(Callable<T>)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util">ColorScheme</A>
<DD>Sets color settings in the UIManager and calls a supplied
routine with those settings in place.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#canBeDeleted()"><B>canBeDeleted()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Determine by policy if this component can be deleted.
<DT><A HREF="./gov/nasa/arc/mct/gui/OptionBox.html#CANCEL_OPTION"><B>CANCEL_OPTION</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/OptionBox.html" title="class in gov.nasa.arc.mct.gui">OptionBox</A>
<DD>Return value from class method if Cancel is chosen.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInEnumAction.html#canHandle(gov.nasa.arc.mct.gui.ActionContext)"><B>canHandle(ActionContext)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInEnumAction.html" title="class in gov.nasa.arc.mct.evaluator.enums">PlaceObjectsInEnumAction</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInMultiAction.html#canHandle(gov.nasa.arc.mct.gui.ActionContext)"><B>canHandle(ActionContext)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/PlaceObjectsInMultiAction.html" title="class in gov.nasa.arc.mct.evaluator.enums">PlaceObjectsInMultiAction</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#canHandle(gov.nasa.arc.mct.gui.ActionContext)"><B>canHandle(ActionContext)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui">ContextAwareAction</A>
<DD>Given the <A HREF="./gov/nasa/arc/mct/gui/ActionContext.html" title="interface in gov.nasa.arc.mct.gui"><CODE>ActionContext</CODE></A>, this method determines the availability
(i.e., either shown or hidden) of this action when appearing as a menu item.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html#canHandle(gov.nasa.arc.mct.gui.ActionContext)"><B>canHandle(ActionContext)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html" title="class in gov.nasa.arc.mct.gui">ContextAwareMenu</A>
<DD>Given an <A HREF="./gov/nasa/arc/mct/gui/ActionContext.html" title="interface in gov.nasa.arc.mct.gui"><CODE>ActionContext</CODE></A>, this method determines the availability
(i.e., either shown or hidden) of this menu.
<DT><A HREF="./gov/nasa/arc/mct/gui/Twistie.html#changeState(boolean)"><B>changeState(boolean)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/Twistie.html" title="class in gov.nasa.arc.mct.gui">Twistie</A>
<DD>This method only changes the state without invoking the overridden changeStateAction method.
<DT><A HREF="./gov/nasa/arc/mct/gui/Twistie.html#changeStateAction(boolean)"><B>changeStateAction(boolean)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/Twistie.html" title="class in gov.nasa.arc.mct.gui">Twistie</A>
<DD>Responds to a state change of the toggle button.
<DT><A HREF="./gov/nasa/arc/mct/services/component/AbstractProviderDelegate.html#check()"><B>check()</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/AbstractProviderDelegate.html" title="class in gov.nasa.arc.mct.services.component">AbstractProviderDelegate</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/component/ProviderDelegate.html#check()"><B>check()</B></A> -
Method in interface gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ProviderDelegate.html" title="interface in gov.nasa.arc.mct.services.component">ProviderDelegate</A>
<DD>Provides the status of this plugin bundle during MCT startup.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#checkBaseComponentRequirements(java.lang.Class)"><B>checkBaseComponentRequirements(Class<? extends AbstractComponent>)</B></A> -
Static method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Verifies the class requirements are met for this component class.
<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html#checkOSPlatform()"><B>checkOSPlatform()</B></A> -
Method in class gov.nasa.arc.mct.util.ext.commands.<A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html" title="class in gov.nasa.arc.mct.util.ext.commands">CmdProcessBuilder</A>
<DD>Gets the target OS platform name.
<DT><A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html#cleanQueue()"><B>cleanQueue()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html" title="class in gov.nasa.arc.mct.util">WeakHashSet</A>
<DD>Cleans the queue.
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedManagerImpl.html#clear()"><B>clear()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FeedManagerImpl.html" title="class in gov.nasa.arc.mct.gui">FeedManagerImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.html#clear(java.util.Collection)"><B>clear(Collection<FeedProvider>)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FeedView.html" title="class in gov.nasa.arc.mct.gui">FeedView</A>
<DD>Clear the display of this manifestation that matches the provided feedProviders.
<DT><A HREF="./gov/nasa/arc/mct/services/component/FeedManager.html#clear()"><B>clear()</B></A> -
Method in interface gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/FeedManager.html" title="interface in gov.nasa.arc.mct.services.component">FeedManager</A>
<DD>Invoked when users clears data buffer.
<DT><A HREF="./gov/nasa/arc/mct/util/LRUSet.html#clear()"><B>clear()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LRUSet.html" title="class in gov.nasa.arc.mct.util">LRUSet</A>
<DD>Clears the set.
<DT><A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html#clear()"><B>clear()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html" title="class in gov.nasa.arc.mct.util">WeakHashSet</A>
<DD>Clears the hash set.
<DT><A HREF="./gov/nasa/arc/mct/gui/SelectionProvider.html#clearCurrentSelections()"><B>clearCurrentSelections()</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/SelectionProvider.html" title="interface in gov.nasa.arc.mct.gui">SelectionProvider</A>
<DD>Clears the set of current selections such that calling <A HREF="./gov/nasa/arc/mct/gui/SelectionProvider.html#getSelectedManifestations()"><CODE>SelectionProvider.getSelectedManifestations()</CODE></A> will return
an empty collection <code>getSelectedManifestations().isEmpty() == true</code>.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.MultiRuleExpressionsTableModel.html#clearModel()"><B>clearModel()</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.MultiRuleExpressionsTableModel.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiViewManifestation.MultiRuleExpressionsTableModel</A>
<DD>Clears the model.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#clone()"><B>clone()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html#clone()"><B>clone()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html" title="class in gov.nasa.arc.mct.components">ExtendedProperties</A>
<DD>Clone the properties and return the clone.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#clone()"><B>clone()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/LRUSet.html#clone()"><B>clone()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LRUSet.html" title="class in gov.nasa.arc.mct.util">LRUSet</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/util/GUIUtil.html#cloneTreeNode(gov.nasa.arc.mct.components.AbstractComponent, gov.nasa.arc.mct.services.component.ViewInfo)"><B>cloneTreeNode(AbstractComponent, ViewInfo)</B></A> -
Static method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/GUIUtil.html" title="class in gov.nasa.arc.mct.gui.util">GUIUtil</A>
<DD>Clones the node from the view role's model role by lazily loading only
its first level children.
<DT><A HREF="./gov/nasa/arc/mct/gui/OptionBox.html#CLOSED_OPTION"><B>CLOSED_OPTION</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/OptionBox.html" title="class in gov.nasa.arc.mct.gui">OptionBox</A>
<DD>Return value from class method if user closes window without selecting anything,
more than likely this should be treated as either a <code>CANCEL_OPTION</code>
or <code>NO_OPTION</code>.
<DT><A HREF="./gov/nasa/arc/mct/gui/WindowManagerImpl.html#closeWindows(java.lang.String)"><B>closeWindows(String)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/WindowManagerImpl.html" title="class in gov.nasa.arc.mct.gui">WindowManagerImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html" title="class in gov.nasa.arc.mct.util.ext.commands"><B>CmdProcessBuilder</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/ext/commands/package-summary.html">gov.nasa.arc.mct.util.ext.commands</A><DD>Command process builder for executing external command processes.<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html#CmdProcessBuilder()"><B>CmdProcessBuilder()</B></A> -
Constructor for class gov.nasa.arc.mct.util.ext.commands.<A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html" title="class in gov.nasa.arc.mct.util.ext.commands">CmdProcessBuilder</A>
<DD>Default constructor.
<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilderStreamHelper.html" title="class in gov.nasa.arc.mct.util.ext.commands"><B>CmdProcessBuilderStreamHelper</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/ext/commands/package-summary.html">gov.nasa.arc.mct.util.ext.commands</A><DD>External command process builder stream helper implementation.<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilderStreamHelper.html#CmdProcessBuilderStreamHelper(java.io.InputStream, java.lang.String)"><B>CmdProcessBuilderStreamHelper(InputStream, String)</B></A> -
Constructor for class gov.nasa.arc.mct.util.ext.commands.<A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilderStreamHelper.html" title="class in gov.nasa.arc.mct.util.ext.commands">CmdProcessBuilderStreamHelper</A>
<DD>Constructor to initialize the input stream and the type.
<DT><A HREF="./gov/nasa/arc/mct/components/collection/CollectionComponent.html" title="class in gov.nasa.arc.mct.components.collection"><B>CollectionComponent</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/collection/package-summary.html">gov.nasa.arc.mct.components.collection</A><DD>MCT Collection Component.<DT><A HREF="./gov/nasa/arc/mct/components/collection/CollectionComponent.html#CollectionComponent()"><B>CollectionComponent()</B></A> -
Constructor for class gov.nasa.arc.mct.components.collection.<A HREF="./gov/nasa/arc/mct/components/collection/CollectionComponent.html" title="class in gov.nasa.arc.mct.components.collection">CollectionComponent</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/collection/CollectionComponentProvider.html" title="class in gov.nasa.arc.mct.collection"><B>CollectionComponentProvider</B></A> - Class in <A HREF="./gov/nasa/arc/mct/collection/package-summary.html">gov.nasa.arc.mct.collection</A><DD>Provides the MCT Collection Component.<DT><A HREF="./gov/nasa/arc/mct/collection/CollectionComponentProvider.html#CollectionComponentProvider()"><B>CollectionComponentProvider()</B></A> -
Constructor for class gov.nasa.arc.mct.collection.<A HREF="./gov/nasa/arc/mct/collection/CollectionComponentProvider.html" title="class in gov.nasa.arc.mct.collection">CollectionComponentProvider</A>
<DD>Default constructor for a collection component object.
<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util"><B>ColorScheme</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Serves user-specified colors to MCT through the UIManager.<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html#ColorScheme()"><B>ColorScheme()</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util">ColorScheme</A>
<DD>Color scheme constructor.
<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html#ColorScheme(java.util.Properties)"><B>ColorScheme(Properties)</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util">ColorScheme</A>
<DD>Create a new color scheme from the provided properties.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#COMBO_BOX_DIMENSION"><B>COMBO_BOX_DIMENSION</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Default combo box dimension.
<DT><A HREF="./gov/nasa/arc/mct/util/StringUtil.html#compare(java.lang.String, java.lang.String)"><B>compare(String, String)</B></A> -
Static method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StringUtil.html" title="class in gov.nasa.arc.mct.util">StringUtil</A>
<DD>Compares two strings.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html#compile(java.lang.String)"><B>compile(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums">EnumEvaluator</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.html#compile(java.lang.String)"><B>compile(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums">MultiEvaluator</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html#compile(java.lang.String)"><B>compile(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionList</A>
<DD>Compiles the expression.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html#compile(java.lang.String)"><B>compile(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiRuleExpressionList</A>
<DD>Compiles the expression.
<DT><A HREF="./gov/nasa/arc/mct/api/persistence/PersistenceService.html#completeRelatedOperations(boolean)"><B>completeRelatedOperations(boolean)</B></A> -
Method in interface gov.nasa.arc.mct.api.persistence.<A HREF="./gov/nasa/arc/mct/api/persistence/PersistenceService.html" title="interface in gov.nasa.arc.mct.api.persistence">PersistenceService</A>
<DD>This method is invoked when completing a set of related persistence operations.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#completeWorkUnit()"><B>completeWorkUnit()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui">ContextAwareAction</A>
<DD>This method should be invoked if persistence must take place before the end of the
<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#actionPerformed(java.awt.event.ActionEvent)"><CODE>ContextAwareAction.actionPerformed(ActionEvent)</CODE></A> method.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentType.html#COMPONENT_ID"><B>COMPONENT_ID</B></A> -
Static variable in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentType.html" title="class in gov.nasa.arc.mct.services.component">ComponentType</A>
<DD>A service property indicating the unique ID of the new component type.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html" title="interface in gov.nasa.arc.mct.services.internal.component"><B>ComponentInitializer</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/services/internal/component/package-summary.html">gov.nasa.arc.mct.services.internal.component</A><DD>Component initializer interface.<DT><A HREF="./gov/nasa/arc/mct/loader/ComponentLoader.html" title="interface in gov.nasa.arc.mct.loader"><B>ComponentLoader</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/loader/package-summary.html">gov.nasa.arc.mct.loader</A><DD>Defines an interface for loading components from a subsystem.<DT><A HREF="./gov/nasa/arc/mct/components/util/ComponentModelUtil.html" title="class in gov.nasa.arc.mct.components.util"><B>ComponentModelUtil</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/util/package-summary.html">gov.nasa.arc.mct.components.util</A><DD>Component model utility for comparing asymmetric set differences.<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentProvider.html" title="interface in gov.nasa.arc.mct.services.component"><B>ComponentProvider</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>This interface can be implemented as an OSGI service to provide one
or more components or views for existing components.<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentRegistry.html" title="interface in gov.nasa.arc.mct.services.component"><B>ComponentRegistry</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>This interface provides administrative functionality for component types.<DT><A HREF="./gov/nasa/arc/mct/collection/access/ComponentRegistryAccess.html" title="class in gov.nasa.arc.mct.collection.access"><B>ComponentRegistryAccess</B></A> - Class in <A HREF="./gov/nasa/arc/mct/collection/access/package-summary.html">gov.nasa.arc.mct.collection.access</A><DD>The <code>ComponentRegistryAccess</code> class is used to inject an instance of the <code>ComponentRegistry</code> using declarative
services.<DT><A HREF="./gov/nasa/arc/mct/collection/access/ComponentRegistryAccess.html#ComponentRegistryAccess()"><B>ComponentRegistryAccess()</B></A> -
Constructor for class gov.nasa.arc.mct.collection.access.<A HREF="./gov/nasa/arc/mct/collection/access/ComponentRegistryAccess.html" title="class in gov.nasa.arc.mct.collection.access">ComponentRegistryAccess</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#componentSaved()"><B>componentSaved()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>This method is invoked by the persistence provider when the component is saved to the underlying persistence store.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html#componentSaved()"><B>componentSaved()</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html" title="interface in gov.nasa.arc.mct.services.internal.component">ComponentInitializer</A>
<DD>Notifies the component that is has been persisted so the dirty state can be reset.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentType.html" title="class in gov.nasa.arc.mct.services.component"><B>ComponentType</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>Implements an OSGi service that is used to define
Module 1-style plugin components.<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentType.html#ComponentType()"><B>ComponentType()</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentType.html" title="class in gov.nasa.arc.mct.services.component">ComponentType</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component"><B>ComponentTypeInfo</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>This class describes an component type.<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class, boolean)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>, boolean)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class, boolean, javax.swing.ImageIcon)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>, boolean, ImageIcon)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class, gov.nasa.arc.mct.services.component.CreateWizardUI)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>, CreateWizardUI)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class, gov.nasa.arc.mct.services.component.CreateWizardUI, javax.swing.ImageIcon)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>, CreateWizardUI, ImageIcon)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#ComponentTypeInfo(java.lang.String, java.lang.String, java.lang.Class, java.lang.String, boolean, gov.nasa.arc.mct.services.component.CreateWizardUI, javax.swing.ImageIcon)"><B>ComponentTypeInfo(String, String, Class<? extends AbstractComponent>, String, boolean, CreateWizardUI, ImageIcon)</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>Creates a new ComponentTypeInfo representing a unique component type.
<DT><A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html" title="class in gov.nasa.arc.mct.util"><B>ComponentUtil</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Component utility.<DT><A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html#ComponentUtil()"><B>ComponentUtil()</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html" title="class in gov.nasa.arc.mct.util">ComponentUtil</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html" title="class in gov.nasa.arc.mct.gui"><B>CompositeAction</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This class defines a composite action, which will be swapped during
runtime by a set of actions that are dynamically populated.<DT><A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html#CompositeAction(java.lang.String)"><B>CompositeAction(String)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html" title="class in gov.nasa.arc.mct.gui">CompositeAction</A>
<DD>The constructor that takes a <CODE>String</CODE> paramater for the name of this action.
<DT><A HREF="./gov/nasa/arc/mct/gui/CompositeViewManifestationProvider.html" title="interface in gov.nasa.arc.mct.gui"><B>CompositeViewManifestationProvider</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>An interface to mark an object which can provide multiple manifestations.<DT><A HREF="./gov/nasa/arc/mct/components/util/ComponentModelUtil.html#computeAsymmetricSetDifferences(java.util.Collection, java.util.Collection, java.util.Collection, java.util.Collection, java.util.Collection)"><B>computeAsymmetricSetDifferences(Collection<T>, Collection<T>, Collection<T>, Collection<T>, Collection<T>)</B></A> -
Static method in class gov.nasa.arc.mct.components.util.<A HREF="./gov/nasa/arc/mct/components/util/ComponentModelUtil.html" title="class in gov.nasa.arc.mct.components.util">ComponentModelUtil</A>
<DD>Computes the set of elements contained in either of the two specified sets but not in both.
<DT><A HREF="./gov/nasa/arc/mct/components/util/ComponentModelUtil.html#computeAsymmetricSetDifferences(java.util.Collection, java.util.Collection, java.util.Collection, java.util.Collection)"><B>computeAsymmetricSetDifferences(Collection<T>, Collection<T>, Collection<T>, Collection<T>)</B></A> -
Static method in class gov.nasa.arc.mct.components.util.<A HREF="./gov/nasa/arc/mct/components/util/ComponentModelUtil.html" title="class in gov.nasa.arc.mct.components.util">ComponentModelUtil</A>
<DD>Computes the set of elements contained in either of the two specified sets but not in both.
<DT><A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html#connect()"><B>connect()</B></A> -
Method in interface gov.nasa.arc.mct.connection.<A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html" title="interface in gov.nasa.arc.mct.connection">ConnectionStatus</A>
<DD>Connect status.
<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#CONNECTION_HOST"><B>CONNECTION_HOST</B></A> -
Static variable in class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>The event property name indicating the server hostname to which we are connected.
<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#CONNECTION_IS_CONNECTED"><B>CONNECTION_IS_CONNECTED</B></A> -
Static variable in class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>The event property name indicating whether the connection is active.
<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#CONNECTION_PORT"><B>CONNECTION_PORT</B></A> -
Static variable in class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>The event property name indicating the server port to which we are connected.
<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#CONNECTION_STATUS"><B>CONNECTION_STATUS</B></A> -
Static variable in class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>The event property name indicating the connection status.
<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#CONNECTION_STATUS_TOPIC"><B>CONNECTION_STATUS_TOPIC</B></A> -
Static variable in class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>The event topic name indicating a telemetry connection status event.
<DT><A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html" title="interface in gov.nasa.arc.mct.connection"><B>ConnectionStatus</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/connection/package-summary.html">gov.nasa.arc.mct.connection</A><DD>ConnectionStatus interface class.<DT><A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.Status.html" title="enum in gov.nasa.arc.mct.connection"><B>ConnectionStatus.Status</B></A> - Enum in <A HREF="./gov/nasa/arc/mct/connection/package-summary.html">gov.nasa.arc.mct.connection</A><DD>Enum for connection status.<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter"><B>ConnectionStatusConstants</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/adapter/package-summary.html">gov.nasa.arc.mct.services.adapter</A><DD>Constants for names of connection status event properties.<DT><A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html#ConnectionStatusConstants()"><B>ConnectionStatusConstants()</B></A> -
Constructor for class gov.nasa.arc.mct.services.adapter.<A HREF="./gov/nasa/arc/mct/services/adapter/ConnectionStatusConstants.html" title="class in gov.nasa.arc.mct.services.adapter">ConnectionStatusConstants</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util"><B>ConstraintBuilder</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/util/package-summary.html">gov.nasa.arc.mct.gui.util</A><DD>Implements a builder pattern for creating layout constraints for
the <CODE>GridBagLayout</CODE> layout manager.<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#ConstraintBuilder(java.awt.Container)"><B>ConstraintBuilder(Container)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>Creates a new builder with default constraints.
<DT><A HREF="./gov/nasa/arc/mct/util/LRUSet.html#contains(java.lang.Object)"><B>contains(Object)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LRUSet.html" title="class in gov.nasa.arc.mct.util">LRUSet</A>
<DD>Checks whether object is contained in the set.
<DT><A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html#contains(java.lang.Object)"><B>contains(Object)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/WeakHashSet.html" title="class in gov.nasa.arc.mct.util">WeakHashSet</A>
<DD>Checks whether an object is contained in the hash set.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#containsBorder(java.lang.Integer)"><B>containsBorder(Integer)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Tests whether the view manifestation has a border on a given
side.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#containsBorder(java.lang.Integer)"><B>containsBorder(Integer)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html#containsChildComponent(gov.nasa.arc.mct.components.AbstractComponent, gov.nasa.arc.mct.components.AbstractComponent)"><B>containsChildComponent(AbstractComponent, AbstractComponent)</B></A> -
Static method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html" title="class in gov.nasa.arc.mct.util">ComponentUtil</A>
<DD>Checks for contains child component.
<DT><A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html#containsChildComponents(gov.nasa.arc.mct.components.AbstractComponent, java.util.Collection)"><B>containsChildComponents(AbstractComponent, Collection<AbstractComponent>)</B></A> -
Static method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ComponentUtil.html" title="class in gov.nasa.arc.mct.util">ComponentUtil</A>
<DD>Checks for contains a collection of child components.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#containsColorMapKey(java.lang.String)"><B>containsColorMapKey(String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Checks the color key from the default map.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#containsColorMapValue(java.awt.Color)"><B>containsColorMapValue(Color)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Checks the color value from the default map.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#containsDefaultSettingsMapKey(java.lang.String)"><B>containsDefaultSettingsMapKey(String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Checks whether the key is contained in the default map settings.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#containsDefaultSettingsMapValue(java.lang.String)"><B>containsDefaultSettingsMapValue(String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Checks whether the value is contained in the default map settings.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui"><B>ContextAwareAction</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This class defines the super class for actions used in MCT.<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html#ContextAwareAction(java.lang.String)"><B>ContextAwareAction(String)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui">ContextAwareAction</A>
<DD>The constructor that takes a <CODE>String</CODE> parameter for the name of this action.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html" title="class in gov.nasa.arc.mct.gui"><B>ContextAwareMenu</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This class defines the super class for menus used in MCT.<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html#ContextAwareMenu(java.lang.String)"><B>ContextAwareMenu(String)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html" title="class in gov.nasa.arc.mct.gui">ContextAwareMenu</A>
<DD>The constructor that takes a <CODE>String</CODE> parameter for the text of this menu.
<DT><A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html#ContextAwareMenu(java.lang.String, java.lang.String[])"><B>ContextAwareMenu(String, String[])</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ContextAwareMenu.html" title="class in gov.nasa.arc.mct.gui">ContextAwareMenu</A>
<DD>The constructor that takes a name for this menu and an array of menubar paths.
<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.FeedType.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in enum gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/FeedProvider.FeedType.html" title="enum in gov.nasa.arc.mct.components">FeedProvider.FeedType</A>
<DD>Converts the given String value into the data type represented by this object.
<DT><A HREF="./gov/nasa/arc/mct/components/TimeConversion.html#convertFromUNIXTime(long)"><B>convertFromUNIXTime(long)</B></A> -
Method in interface gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/TimeConversion.html" title="interface in gov.nasa.arc.mct.components">TimeConversion</A>
<DD>Convert the supplied UNIX epoch time to whatever
time representation this conversion generally supports.
<DT><A HREF="./gov/nasa/arc/mct/components/TimeConversion.html#convertToUNIXTime(java.lang.String)"><B>convertToUNIXTime(String)</B></A> -
Method in interface gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/TimeConversion.html" title="interface in gov.nasa.arc.mct.components">TimeConversion</A>
<DD>Convert this object to the UNIX epoch.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/CoreComponentRegistry.html" title="interface in gov.nasa.arc.mct.services.internal.component"><B>CoreComponentRegistry</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/services/internal/component/package-summary.html">gov.nasa.arc.mct.services.internal.component</A><DD>This interface extends the ComponentRegistry interface to provide additional
API for creating new instances.<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/impl/MCTCountDownLatchImpl.html#countDown()"><B>countDown()</B></A> -
Method in class gov.nasa.arc.mct.services.internal.component.impl.<A HREF="./gov/nasa/arc/mct/services/internal/component/impl/MCTCountDownLatchImpl.html" title="class in gov.nasa.arc.mct.services.internal.component.impl">MCTCountDownLatchImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/MCTCountDownLatch.html#countDown()"><B>countDown()</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/MCTCountDownLatch.html" title="interface in gov.nasa.arc.mct.services.internal.component">MCTCountDownLatch</A>
<DD>Count down.
<DT><A HREF="./gov/nasa/arc/mct/services/component/CreateWizardUI.html#createComp(gov.nasa.arc.mct.services.component.ComponentRegistry, gov.nasa.arc.mct.components.AbstractComponent)"><B>createComp(ComponentRegistry, AbstractComponent)</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/CreateWizardUI.html" title="class in gov.nasa.arc.mct.services.component">CreateWizardUI</A>
<DD>Creates new instance of a specified component object.
<DT><A HREF="./gov/nasa/arc/mct/util/BatchLoader.html#createConnection(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)"><B>createConnection(String, String, String, String, String, boolean)</B></A> -
Method in interface gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/BatchLoader.html" title="interface in gov.nasa.arc.mct.util">BatchLoader</A>
<DD>Opens a database connection.
<DT><A HREF="./gov/nasa/arc/mct/util/BatchLoaderImpl.html#createConnection(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)"><B>createConnection(String, String, String, String, String, boolean)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/BatchLoaderImpl.html" title="class in gov.nasa.arc.mct.util">BatchLoaderImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/EvaluatorCreationService.html#createEvaluator(java.lang.String, java.lang.String)"><B>createEvaluator(String, String)</B></A> -
Method in interface gov.nasa.arc.mct.evaluator.api.<A HREF="./gov/nasa/arc/mct/evaluator/api/EvaluatorCreationService.html" title="interface in gov.nasa.arc.mct.evaluator.api">EvaluatorCreationService</A>
<DD>Create an evaluator with the specified language type and code.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#createJButton(java.lang.String)"><B>createJButton(String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Creates a new button component.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/MultiCreationService.html#createMulti(java.lang.String, java.lang.String)"><B>createMulti(String, String)</B></A> -
Method in interface gov.nasa.arc.mct.evaluator.api.<A HREF="./gov/nasa/arc/mct/evaluator/api/MultiCreationService.html" title="interface in gov.nasa.arc.mct.evaluator.api">MultiCreationService</A>
<DD>Create a multi with the specified language type and code.
<DT><A HREF="./gov/nasa/arc/mct/services/component/SearchProvider.html#createSearchUI()"><B>createSearchUI()</B></A> -
Method in interface gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/SearchProvider.html" title="interface in gov.nasa.arc.mct.services.component">SearchProvider</A>
<DD>Create the UI.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTSplitPaneFactory.html#createSplitPanes(java.awt.Container, java.util.List, int)"><B>createSplitPanes(Container, List<JPanel>, int)</B></A> -
Static method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTSplitPaneFactory.html" title="class in gov.nasa.arc.mct.gui">MCTSplitPaneFactory</A>
<DD>Creates a series of <CODE>JSplitPane</CODE> objects to hold the
given panels, in a horizontal or vertical orientation.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/MCTSplitPaneFactory.html#createSplitPanes(java.awt.Container, java.util.List, int)"><B>createSplitPanes(Container, List<JPanel>, int)</B></A> -
Static method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/MCTSplitPaneFactory.html" title="class in gov.nasa.arc.mct.gui.util">MCTSplitPaneFactory</A>
<DD>Creates a series of <CODE>JSplitPane</CODE> objects to hold the
given panels, in a horizontal or vertical orientation.
<DT><A HREF="./gov/nasa/arc/mct/services/component/ViewInfo.html#createView(gov.nasa.arc.mct.components.AbstractComponent)"><B>createView(AbstractComponent)</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ViewInfo.html" title="class in gov.nasa.arc.mct.services.component">ViewInfo</A>
<DD>Creates a new instance of this for the selected view type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/StatusAreaWidgetInfo.html#createWidget()"><B>createWidget()</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/StatusAreaWidgetInfo.html" title="class in gov.nasa.arc.mct.services.component">StatusAreaWidgetInfo</A>
<DD>Instantiates a status widget based the given type.
<DT><A HREF="./gov/nasa/arc/mct/services/component/CreateWizardUI.html" title="class in gov.nasa.arc.mct.services.component"><B>CreateWizardUI</B></A> - Class in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>This class provides a wizard for setting up a customizable UI to take in necessary
parameters to create an instance of a new component.<DT><A HREF="./gov/nasa/arc/mct/services/component/CreateWizardUI.html#CreateWizardUI()"><B>CreateWizardUI()</B></A> -
Constructor for class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/CreateWizardUI.html" title="class in gov.nasa.arc.mct.services.component">CreateWizardUI</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/identitymgr/IdentityManager.html#currentGroup"><B>currentGroup</B></A> -
Variable in class gov.nasa.arc.mct.identitymgr.<A HREF="./gov/nasa/arc/mct/identitymgr/IdentityManager.html" title="class in gov.nasa.arc.mct.identitymgr">IdentityManager</A>
<DD>Current MCT group instance variable.
<DT><A HREF="./gov/nasa/arc/mct/identitymgr/IdentityManager.html#currentUser"><B>currentUser</B></A> -
Variable in class gov.nasa.arc.mct.identitymgr.<A HREF="./gov/nasa/arc/mct/identitymgr/IdentityManager.html" title="class in gov.nasa.arc.mct.identitymgr">IdentityManager</A>
<DD>Current MCT user instance variable.
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/gui/View.html#DATA_FLAVOR"><B>DATA_FLAVOR</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/View.html" title="class in gov.nasa.arc.mct.gui">View</A>
<DD>This member represents the data flavor used in the platform for drag and drop.
<DT><A HREF="./gov/nasa/arc/mct/api/feed/DataArchive.html" title="interface in gov.nasa.arc.mct.api.feed"><B>DataArchive</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>Data archive interface.<DT><A HREF="./gov/nasa/arc/mct/api/feed/DataProvider.html" title="interface in gov.nasa.arc.mct.api.feed"><B>DataProvider</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>This interface provides an interface for retrieving data from
a feed.<DT><A HREF="./gov/nasa/arc/mct/api/feed/DataProvider.LOS.html" title="enum in gov.nasa.arc.mct.api.feed"><B>DataProvider.LOS</B></A> - Enum in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>An enum which defines the various level of service (LOS) a data provider can provide.<DT><A HREF="./gov/nasa/arc/mct/util/DataValidation.html" title="class in gov.nasa.arc.mct.util"><B>DataValidation</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Data validation for length input string.<DT><A HREF="./gov/nasa/arc/mct/util/DataValidation.html#DataValidation()"><B>DataValidation()</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/DataValidation.html" title="class in gov.nasa.arc.mct.util">DataValidation</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#DEFAULT_BACKGROUND_COLOR"><B>DEFAULT_BACKGROUND_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Default background color name.
<DT><A HREF="./gov/nasa/arc/mct/gui/SplittablePane.html#DEFAULT_DIVIDER_LOCATION"><B>DEFAULT_DIVIDER_LOCATION</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/SplittablePane.html" title="class in gov.nasa.arc.mct.gui">SplittablePane</A>
<DD>The divider is, by default, 40% of the way across or down.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#DEFAULT_FOREGROUND_COLOR"><B>DEFAULT_FOREGROUND_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Default foreground color name.
<DT><A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html#DEFAULT_HPAD"><B>DEFAULT_HPAD</B></A> -
Static variable in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/ConstraintBuilder.html" title="class in gov.nasa.arc.mct.gui.util">ConstraintBuilder</A>
<DD>The default amount of horizontal padding to add to cells.
<DT><A HREF="./gov/nasa/arc/mct/components/DetectGraphicsDevices.html#DEFAULT_MULTIPLE_MONITOR_TEXT"><B>DEFAULT_MULTIPLE_MONITOR_TEXT</B></A> -
Static variable in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/DetectGraphicsDevices.html" title="class in gov.nasa.arc.mct.components">DetectGraphicsDevices</A>
<DD>Default text menu.
<DT><A HREF="./gov/nasa/arc/mct/gui/OptionBox.html#DEFAULT_OPTION"><B>DEFAULT_OPTION</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/OptionBox.html" title="class in gov.nasa.arc.mct.gui">OptionBox</A>
<DD>Type meaning Look and Feel should not supply any options --
only use the options from the <code>JOptionPane</code>.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#DEFAULT_TEXT_LABEL_COLOR"><B>DEFAULT_TEXT_LABEL_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Default text label color.
<DT><A HREF="./gov/nasa/arc/mct/services/activity/TimeService.html#DEFAULT_TIME_FORMAT"><B>DEFAULT_TIME_FORMAT</B></A> -
Static variable in class gov.nasa.arc.mct.services.activity.<A HREF="./gov/nasa/arc/mct/services/activity/TimeService.html" title="class in gov.nasa.arc.mct.services.activity">TimeService</A>
<DD>Time service default time format.
<DT><A HREF="./gov/nasa/arc/mct/services/activity/TimeService.html#DEFAULT_TIME_SYSTEM"><B>DEFAULT_TIME_SYSTEM</B></A> -
Static variable in class gov.nasa.arc.mct.services.activity.<A HREF="./gov/nasa/arc/mct/services/activity/TimeService.html" title="class in gov.nasa.arc.mct.services.activity">TimeService</A>
<DD>Time service default time system.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html#deleteExp(gov.nasa.arc.mct.evaluator.expressions.Expression)"><B>deleteExp(Expression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionList</A>
<DD>Deletes the expression.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html#deleteExp(gov.nasa.arc.mct.evaluator.expressions.MultiRuleExpression)"><B>deleteExp(MultiRuleExpression)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiRuleExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiRuleExpressionList</A>
<DD>Deletes the expression.
<DT><A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html#deleteObserver(java.util.Observer)"><B>deleteObserver(Observer)</B></A> -
Method in interface gov.nasa.arc.mct.connection.<A HREF="./gov/nasa/arc/mct/connection/ConnectionStatus.html" title="interface in gov.nasa.arc.mct.connection">ConnectionStatus</A>
<DD>Deletes observer.
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionManager.html#deregisterAction(gov.nasa.arc.mct.gui.ContextAwareAction)"><B>deregisterAction(ContextAwareAction)</B></A> -
Static method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionManager.html" title="class in gov.nasa.arc.mct.gui">ActionManager</A>
<DD>Removes a single action object.
<DT><A HREF="./gov/nasa/arc/mct/components/DetectGraphicsDevices.html" title="class in gov.nasa.arc.mct.components"><B>DetectGraphicsDevices</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>Detects multiple monitor displays singleton helper class.<DT><A HREF="./gov/nasa/arc/mct/roles/events/PropertyChangeEvent.html#DISPLAY_NAME"><B>DISPLAY_NAME</B></A> -
Static variable in class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/PropertyChangeEvent.html" title="class in gov.nasa.arc.mct.roles.events">PropertyChangeEvent</A>
<DD>The event property indicating the display name of the property
that has changed.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/util/internal/ElapsedTimer.html" title="class in gov.nasa.arc.mct.util.internal"><B>ElapsedTimer</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/internal/package-summary.html">gov.nasa.arc.mct.util.internal</A><DD>Provide a timer than can be used for performance monitoring.<DT><A HREF="./gov/nasa/arc/mct/util/internal/ElapsedTimer.html#ElapsedTimer()"><B>ElapsedTimer()</B></A> -
Constructor for class gov.nasa.arc.mct.util.internal.<A HREF="./gov/nasa/arc/mct/util/internal/ElapsedTimer.html" title="class in gov.nasa.arc.mct.util.internal">ElapsedTimer</A>
<DD>Default constructor to initialize the overall time and intervals.
<DT><A HREF="./gov/nasa/arc/mct/gui/View.html#enterLockedState()"><B>enterLockedState()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/View.html" title="class in gov.nasa.arc.mct.gui">View</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/lock/manager/LockObserver.html#enterLockedState()"><B>enterLockedState()</B></A> -
Method in interface gov.nasa.arc.mct.lock.manager.<A HREF="./gov/nasa/arc/mct/lock/manager/LockObserver.html" title="interface in gov.nasa.arc.mct.lock.manager">LockObserver</A>
<DD>Enter lock state.
<DT><A HREF="./gov/nasa/arc/mct/gui/TwiddleView.html#enterTwiddleMode(gov.nasa.arc.mct.components.AbstractComponent)"><B>enterTwiddleMode(AbstractComponent)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/TwiddleView.html" title="interface in gov.nasa.arc.mct.gui">TwiddleView</A>
<DD>This method notifies the view when a user requests to switch to twiddle mode.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums"><B>EnumEvaluator</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/enums/package-summary.html">gov.nasa.arc.mct.evaluator.enums</A><DD>The enum evalutator implementation class.<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html#EnumEvaluator()"><B>EnumEvaluator()</B></A> -
Constructor for class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums">EnumEvaluator</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html#enumExpression"><B>enumExpression</B></A> -
Static variable in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums">EnumEvaluator</A>
<DD>Enum expression pattern.
<DT><A HREF="./gov/nasa/arc/mct/gui/Request.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/Request.html" title="class in gov.nasa.arc.mct.gui">Request</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/View.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/View.html" title="class in gov.nasa.arc.mct.gui">View</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ComponentTypeInfo.html" title="class in gov.nasa.arc.mct.services.component">ComponentTypeInfo</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/services/component/ViewInfo.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/ViewInfo.html" title="class in gov.nasa.arc.mct.services.component">ViewInfo</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/ParameterInfo.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ParameterInfo.html" title="class in gov.nasa.arc.mct.util">ParameterInfo</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/OptionBox.html#ERROR_MESSAGE"><B>ERROR_MESSAGE</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/OptionBox.html" title="class in gov.nasa.arc.mct.gui">OptionBox</A>
<DD>Used for error messages.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/Executor.html#evaluate(java.util.Map, java.util.List)"><B>evaluate(Map<String, List<Map<String, String>>>, List<FeedProvider>)</B></A> -
Method in interface gov.nasa.arc.mct.evaluator.api.<A HREF="./gov/nasa/arc/mct/evaluator/api/Executor.html" title="interface in gov.nasa.arc.mct.evaluator.api">Executor</A>
<DD>Execute the evaluator with the given data values.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html#evaluate(java.lang.String)"><B>evaluate(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/EnumEvaluator.html" title="class in gov.nasa.arc.mct.evaluator.enums">EnumEvaluator</A>
<DD>Evaluates the expression value.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.MultiExpression.Operator.html#evaluate(java.util.Map, double, java.lang.String, gov.nasa.arc.mct.evaluator.enums.MultiEvaluator.MultiExpression.SetLogic, java.lang.String)"><B>evaluate(Map<String, Double>, double, String, MultiEvaluator.MultiExpression.SetLogic, String)</B></A> -
Method in enum gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.MultiExpression.Operator.html" title="enum in gov.nasa.arc.mct.evaluator.enums">MultiEvaluator.MultiExpression.Operator</A>
<DD>Evaluate a rule based on multiple parameter inputs.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html#evaluate(java.lang.String)"><B>evaluate(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionsViewManifestation</A>
<DD>Evaluates the result.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html#evaluate(java.lang.String)"><B>evaluate(String)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiViewManifestation</A>
<DD>Evaluates the result.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/Evaluator.html" title="interface in gov.nasa.arc.mct.evaluator.api"><B>Evaluator</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/evaluator/api/package-summary.html">gov.nasa.arc.mct.evaluator.api</A><DD>The evaluator interface is implemented by classes providing evaluation capabilities based on telemetry values.<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/EvaluatorCreationService.html" title="interface in gov.nasa.arc.mct.evaluator.api"><B>EvaluatorCreationService</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/evaluator/api/package-summary.html">gov.nasa.arc.mct.evaluator.api</A><DD>The <code>EvaluatorCreationService</code> provides a service for creating
evaluator instances from outside this module.<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#EXEC_BUTTON_LABEL_TEXT"><B>EXEC_BUTTON_LABEL_TEXT</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Default executables button label text.
<DT><A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html#execMultipleCommands(java.lang.String, java.util.List)"><B>execMultipleCommands(String, List<String>)</B></A> -
Method in class gov.nasa.arc.mct.util.ext.commands.<A HREF="./gov/nasa/arc/mct/util/ext/commands/CmdProcessBuilder.html" title="class in gov.nasa.arc.mct.util.ext.commands">CmdProcessBuilder</A>
<DD>Executes external multiple commands.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.MultiExpression.html#execute(java.util.Map)"><B>execute(Map<String, Double>)</B></A> -
Method in class gov.nasa.arc.mct.evaluator.enums.<A HREF="./gov/nasa/arc/mct/evaluator/enums/MultiEvaluator.MultiExpression.html" title="class in gov.nasa.arc.mct.evaluator.enums">MultiEvaluator.MultiExpression</A>
<DD>Executes the rule over a set of provided values.
<DT><A HREF="./gov/nasa/arc/mct/policy/Policy.html#execute(gov.nasa.arc.mct.policy.PolicyContext)"><B>execute(PolicyContext)</B></A> -
Method in interface gov.nasa.arc.mct.policy.<A HREF="./gov/nasa/arc/mct/policy/Policy.html" title="interface in gov.nasa.arc.mct.policy">Policy</A>
<DD>Implements the policy execution on a given <code>PolicyContext</code>.
<DT><A HREF="./gov/nasa/arc/mct/services/component/PolicyManager.html#execute(java.lang.String, gov.nasa.arc.mct.policy.PolicyContext)"><B>execute(String, PolicyContext)</B></A> -
Method in interface gov.nasa.arc.mct.services.component.<A HREF="./gov/nasa/arc/mct/services/component/PolicyManager.html" title="interface in gov.nasa.arc.mct.services.component">PolicyManager</A>
<DD>Executes all policies in the specified category and returns
the aggregate result.
<DT><A HREF="./gov/nasa/arc/mct/policy/ExecutionResult.html" title="class in gov.nasa.arc.mct.policy"><B>ExecutionResult</B></A> - Class in <A HREF="./gov/nasa/arc/mct/policy/package-summary.html">gov.nasa.arc.mct.policy</A><DD>Defines the execution result returned by a <A HREF="./gov/nasa/arc/mct/policy/Policy.html" title="interface in gov.nasa.arc.mct.policy"><CODE>Policy</CODE></A>.<DT><A HREF="./gov/nasa/arc/mct/policy/ExecutionResult.html#ExecutionResult(gov.nasa.arc.mct.policy.PolicyContext)"><B>ExecutionResult(PolicyContext)</B></A> -
Constructor for class gov.nasa.arc.mct.policy.<A HREF="./gov/nasa/arc/mct/policy/ExecutionResult.html" title="class in gov.nasa.arc.mct.policy">ExecutionResult</A>
<DD>Creates an <code>ExecutionResult</code>.
<DT><A HREF="./gov/nasa/arc/mct/policy/ExecutionResult.html#ExecutionResult(gov.nasa.arc.mct.policy.PolicyContext, boolean, java.lang.String)"><B>ExecutionResult(PolicyContext, boolean, String)</B></A> -
Constructor for class gov.nasa.arc.mct.policy.<A HREF="./gov/nasa/arc/mct/policy/ExecutionResult.html" title="class in gov.nasa.arc.mct.policy">ExecutionResult</A>
<DD>Creates an <code>ExecutionResult</code>.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/Executor.html" title="interface in gov.nasa.arc.mct.evaluator.api"><B>Executor</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/evaluator/api/package-summary.html">gov.nasa.arc.mct.evaluator.api</A><DD>The executor interface is implemented by classes that can execute evaluations based on telemetry values.<DT><A HREF="./gov/nasa/arc/mct/gui/View.html#exitLockedState()"><B>exitLockedState()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/View.html" title="class in gov.nasa.arc.mct.gui">View</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/lock/manager/LockObserver.html#exitLockedState()"><B>exitLockedState()</B></A> -
Method in interface gov.nasa.arc.mct.lock.manager.<A HREF="./gov/nasa/arc/mct/lock/manager/LockObserver.html" title="interface in gov.nasa.arc.mct.lock.manager">LockObserver</A>
<DD>Exits the locked state.
<DT><A HREF="./gov/nasa/arc/mct/gui/TwiddleView.html#exitTwiddleMode(gov.nasa.arc.mct.components.AbstractComponent)"><B>exitTwiddleMode(AbstractComponent)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/TwiddleView.html" title="interface in gov.nasa.arc.mct.gui">TwiddleView</A>
<DD>This method notifies the view when a user requests to switch back from twiddle mode.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/Expression.html" title="class in gov.nasa.arc.mct.evaluator.expressions"><B>Expression</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/expressions/package-summary.html">gov.nasa.arc.mct.evaluator.expressions</A><DD>Enum expression.<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/Expression.html#Expression()"><B>Expression()</B></A> -
Constructor for class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/Expression.html" title="class in gov.nasa.arc.mct.evaluator.expressions">Expression</A>
<DD>Expression default initialization constructor.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/Expression.html#Expression(java.lang.String, java.lang.String, java.lang.String)"><B>Expression(String, String, String)</B></A> -
Constructor for class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/Expression.html" title="class in gov.nasa.arc.mct.evaluator.expressions">Expression</A>
<DD>Expression initialization based upon operation, value, and display.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions"><B>ExpressionList</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/expressions/package-summary.html">gov.nasa.arc.mct.evaluator.expressions</A><DD>Expression list.<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html#ExpressionList(java.lang.String)"><B>ExpressionList(String)</B></A> -
Constructor for class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionList.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionList</A>
<DD>Expression list constructor.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsFormattingController.html" title="class in gov.nasa.arc.mct.evaluator.expressions"><B>ExpressionsFormattingController</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/expressions/package-summary.html">gov.nasa.arc.mct.evaluator.expressions</A><DD>Expressions format controller.<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsFormattingControlsPanel.html" title="class in gov.nasa.arc.mct.evaluator.expressions"><B>ExpressionsFormattingControlsPanel</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/expressions/package-summary.html">gov.nasa.arc.mct.evaluator.expressions</A><DD>Expression formating control panel class.<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions"><B>ExpressionsViewManifestation</B></A> - Class in <A HREF="./gov/nasa/arc/mct/evaluator/expressions/package-summary.html">gov.nasa.arc.mct.evaluator.expressions</A><DD>Implements a visible manifestation of the expression view role.<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html#ExpressionsViewManifestation(gov.nasa.arc.mct.components.AbstractComponent, gov.nasa.arc.mct.services.component.ViewInfo)"><B>ExpressionsViewManifestation(AbstractComponent, ViewInfo)</B></A> -
Constructor for class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionsViewManifestation</A>
<DD>The expression view manifestation initialization.
<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html" title="class in gov.nasa.arc.mct.components"><B>ExtendedProperties</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>This class contains the set of properties for a specific view.<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html#ExtendedProperties()"><B>ExtendedProperties()</B></A> -
Constructor for class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html" title="class in gov.nasa.arc.mct.components">ExtendedProperties</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedPropertiesXmlAdapter.html" title="class in gov.nasa.arc.mct.components"><B>ExtendedPropertiesXmlAdapter</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>The Xml Adapter for jaxb to marshal and unmarshal ViewRoleProperties.<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedPropertiesXmlAdapter.html#ExtendedPropertiesXmlAdapter()"><B>ExtendedPropertiesXmlAdapter()</B></A> -
Constructor for class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/ExtendedPropertiesXmlAdapter.html" title="class in gov.nasa.arc.mct.components">ExtendedPropertiesXmlAdapter</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.html" title="class in gov.nasa.arc.mct.registry"><B>ExternalComponentRegistryImpl</B></A> - Class in <A HREF="./gov/nasa/arc/mct/registry/package-summary.html">gov.nasa.arc.mct.registry</A><DD>Provide an instance of the component registry which supports creating components.<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentProvider.html" title="class in gov.nasa.arc.mct.registry"><B>ExternalComponentRegistryImpl.ExtendedComponentProvider</B></A> - Class in <A HREF="./gov/nasa/arc/mct/registry/package-summary.html">gov.nasa.arc.mct.registry</A><DD>Implements an extended component provider that can wrap a component provider
supplied by a plugin bundle.<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentProvider.html#ExternalComponentRegistryImpl.ExtendedComponentProvider(gov.nasa.arc.mct.services.component.ComponentProvider, java.lang.String)"><B>ExternalComponentRegistryImpl.ExtendedComponentProvider(ComponentProvider, String)</B></A> -
Constructor for class gov.nasa.arc.mct.registry.<A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentProvider.html" title="class in gov.nasa.arc.mct.registry">ExternalComponentRegistryImpl.ExtendedComponentProvider</A>
<DD>Creates a new extended component provider based on a base component
provider.
<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentTypeInfo.html" title="class in gov.nasa.arc.mct.registry"><B>ExternalComponentRegistryImpl.ExtendedComponentTypeInfo</B></A> - Class in <A HREF="./gov/nasa/arc/mct/registry/package-summary.html">gov.nasa.arc.mct.registry</A><DD>Implements an extended component type information.<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentTypeInfo.html#ExternalComponentRegistryImpl.ExtendedComponentTypeInfo(gov.nasa.arc.mct.services.component.ComponentTypeInfo, java.lang.String)"><B>ExternalComponentRegistryImpl.ExtendedComponentTypeInfo(ComponentTypeInfo, String)</B></A> -
Constructor for class gov.nasa.arc.mct.registry.<A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentTypeInfo.html" title="class in gov.nasa.arc.mct.registry">ExternalComponentRegistryImpl.ExtendedComponentTypeInfo</A>
<DD>Creates a new extended component type.
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/api/feed/FeedAggregator.html" title="interface in gov.nasa.arc.mct.api.feed"><B>FeedAggregator</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>This interface defines the api for a Feed Aggregator.<DT><A HREF="./gov/nasa/arc/mct/api/feed/FeedDataArchive.html" title="interface in gov.nasa.arc.mct.api.feed"><B>FeedDataArchive</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/api/feed/package-summary.html">gov.nasa.arc.mct.api.feed</A><DD>This interface defines the api for putting data into the archive.<DT><A HREF="./gov/nasa/arc/mct/services/component/FeedManager.html" title="interface in gov.nasa.arc.mct.services.component"><B>FeedManager</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/services/component/package-summary.html">gov.nasa.arc.mct.services.component</A><DD>This interface provides access for feed management.<DT><A HREF="./gov/nasa/arc/mct/gui/FeedManagerImpl.html" title="class in gov.nasa.arc.mct.gui"><B>FeedManagerImpl</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>Provides an instance of a <A HREF="./gov/nasa/arc/mct/services/component/FeedManager.html" title="interface in gov.nasa.arc.mct.services.component"><CODE>FeedManager</CODE></A>.<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.html" title="interface in gov.nasa.arc.mct.components"><B>FeedProvider</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>This interface provides a time based feed.<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.FeedType.html" title="enum in gov.nasa.arc.mct.components"><B>FeedProvider.FeedType</B></A> - Enum in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>Represents the data type provided through this feed provider.<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.RenderingInfo.html" title="class in gov.nasa.arc.mct.components"><B>FeedProvider.RenderingInfo</B></A> - Class in <A HREF="./gov/nasa/arc/mct/components/package-summary.html">gov.nasa.arc.mct.components</A><DD>Rendering info.<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.RenderingInfo.html#FeedProvider.RenderingInfo(java.lang.String, java.awt.Color, java.lang.String, java.awt.Color, boolean)"><B>FeedProvider.RenderingInfo(String, Color, String, Color, boolean)</B></A> -
Constructor for class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/FeedProvider.RenderingInfo.html" title="class in gov.nasa.arc.mct.components">FeedProvider.RenderingInfo</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.html" title="class in gov.nasa.arc.mct.gui"><B>FeedView</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This is the super class for feed displays.<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.html#FeedView(gov.nasa.arc.mct.components.AbstractComponent, gov.nasa.arc.mct.services.component.ViewInfo)"><B>FeedView(AbstractComponent, ViewInfo)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FeedView.html" title="class in gov.nasa.arc.mct.gui">FeedView</A>
<DD>Creates a new feed view manifestation with characteristics given by
persisted view manifestation information.
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.html#FeedView(gov.nasa.arc.mct.components.AbstractComponent)"><B>FeedView(AbstractComponent)</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FeedView.html" title="class in gov.nasa.arc.mct.gui">FeedView</A>
<DD>Creates a new feed view manifestation with characteristics given by
persisted view manifestation information.
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.DataTransformation.html" title="interface in gov.nasa.arc.mct.gui"><B>FeedView.DataTransformation</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This interface defines an arbitrary transformation on a set of feed data.<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.RenderingCallback.html" title="interface in gov.nasa.arc.mct.gui"><B>FeedView.RenderingCallback</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>This interface defines an arbitrary operation performed on set of feed data.<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.SynchronizationControl.html" title="interface in gov.nasa.arc.mct.gui"><B>FeedView.SynchronizationControl</B></A> - Interface in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>Provide interaction with the synchronization time state.<DT><A HREF="./gov/nasa/arc/mct/gui/FileChooser.html" title="class in gov.nasa.arc.mct.gui"><B>FileChooser</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>Implements a file chooser for which the user can control the modality,
application-modal or document-modal.<DT><A HREF="./gov/nasa/arc/mct/gui/FileChooser.html#FileChooser()"><B>FileChooser()</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FileChooser.html" title="class in gov.nasa.arc.mct.gui">FileChooser</A>
<DD>Creates a file chooser that can be shown as a dialog.
<DT><A HREF="./gov/nasa/arc/mct/util/FilepathReplacer.html" title="class in gov.nasa.arc.mct.util"><B>FilepathReplacer</B></A> - Class in <A HREF="./gov/nasa/arc/mct/util/package-summary.html">gov.nasa.arc.mct.util</A><DD>Replaces variables in an expression.<DT><A HREF="./gov/nasa/arc/mct/util/FilepathReplacer.html#FilepathReplacer()"><B>FilepathReplacer()</B></A> -
Constructor for class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/FilepathReplacer.html" title="class in gov.nasa.arc.mct.util">FilepathReplacer</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/FileChooser.html#FILES_AND_DIRECTORIES"><B>FILES_AND_DIRECTORIES</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FileChooser.html" title="class in gov.nasa.arc.mct.gui">FileChooser</A>
<DD>Instruction to display only files.
<DT><A HREF="./gov/nasa/arc/mct/gui/FileChooser.html#FILES_ONLY"><B>FILES_ONLY</B></A> -
Static variable in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FileChooser.html" title="class in gov.nasa.arc.mct.gui">FileChooser</A>
<DD>Instruction to display only files.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html#fireFocusPersist()"><B>fireFocusPersist()</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionsViewManifestation</A>
<DD>Saves the manifested component.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html#fireFocusPersist()"><B>fireFocusPersist()</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiViewManifestation</A>
<DD>Saves the manifested component.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html#fireManifestationChanged()"><B>fireManifestationChanged()</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/ExpressionsViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">ExpressionsViewManifestation</A>
<DD>Fires the selection property changes.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html#fireManifestationChanged()"><B>fireManifestationChanged()</B></A> -
Method in class gov.nasa.arc.mct.evaluator.expressions.<A HREF="./gov/nasa/arc/mct/evaluator/expressions/MultiViewManifestation.html" title="class in gov.nasa.arc.mct.evaluator.expressions">MultiViewManifestation</A>
<DD>Fires the selection property changes.
<DT><A HREF="./gov/nasa/arc/mct/roles/events/FocusEvent.html" title="class in gov.nasa.arc.mct.roles.events"><B>FocusEvent</B></A> - Class in <A HREF="./gov/nasa/arc/mct/roles/events/package-summary.html">gov.nasa.arc.mct.roles.events</A><DD>This event targets extended MCTGUIComponent for tree nodes.<DT><A HREF="./gov/nasa/arc/mct/roles/events/FocusEvent.html#FocusEvent(java.lang.Object, java.util.Collection)"><B>FocusEvent(Object, Collection<AbstractComponent>)</B></A> -
Constructor for class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/FocusEvent.html" title="class in gov.nasa.arc.mct.roles.events">FocusEvent</A>
<DD>Creates a new focus event with the given source object and the
collection of components that are gaining the focus.
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#FOREGROUND_COLOR"><B>FOREGROUND_COLOR</B></A> -
Static variable in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Button label foreground color.
<DT><A HREF="./gov/nasa/arc/mct/gui/FrameUtil.html" title="class in gov.nasa.arc.mct.gui"><B>FrameUtil</B></A> - Class in <A HREF="./gov/nasa/arc/mct/gui/package-summary.html">gov.nasa.arc.mct.gui</A><DD>Implements utility methods for finding information about frames
that have been created.<DT><A HREF="./gov/nasa/arc/mct/gui/FrameUtil.html#FrameUtil()"><B>FrameUtil()</B></A> -
Constructor for class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FrameUtil.html" title="class in gov.nasa.arc.mct.gui">FrameUtil</A>
<DD>
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./gov/nasa/arc/mct/gui/util/UniqueNameGenerator.html#get(java.lang.String)"><B>get(String)</B></A> -
Static method in class gov.nasa.arc.mct.gui.util.<A HREF="./gov/nasa/arc/mct/gui/util/UniqueNameGenerator.html" title="class in gov.nasa.arc.mct.gui.util">UniqueNameGenerator</A>
<DD>Static getter method.
<DT><A HREF="./gov/nasa/arc/mct/util/LafColor.html#get(java.lang.String)"><B>get(String)</B></A> -
Static method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LafColor.html" title="class in gov.nasa.arc.mct.util">LafColor</A>
<DD>Gets the color based on UIManager defaults.
<DT><A HREF="./gov/nasa/arc/mct/abbreviation/Abbreviations.html#getAbbreviations(java.lang.String)"><B>getAbbreviations(String)</B></A> -
Method in interface gov.nasa.arc.mct.abbreviation.<A HREF="./gov/nasa/arc/mct/abbreviation/Abbreviations.html" title="interface in gov.nasa.arc.mct.abbreviation">Abbreviations</A>
<DD>Gets the available abbreviations for a phrase.
<DT><A HREF="./gov/nasa/arc/mct/abbreviation/AbbreviationService.html#getAbbreviations(java.lang.String)"><B>getAbbreviations(String)</B></A> -
Method in interface gov.nasa.arc.mct.abbreviation.<A HREF="./gov/nasa/arc/mct/abbreviation/AbbreviationService.html" title="interface in gov.nasa.arc.mct.abbreviation">AbbreviationService</A>
<DD>Gets the available abbreviations for a string.
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionManager.html#getAction(java.lang.String, gov.nasa.arc.mct.gui.ActionContextImpl)"><B>getAction(String, ActionContextImpl)</B></A> -
Static method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionManager.html" title="class in gov.nasa.arc.mct.gui">ActionManager</A>
<DD>Returns the first action that can handle the context.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTFlipFlopAction.html#getAction()"><B>getAction()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTFlipFlopAction.html" title="class in gov.nasa.arc.mct.gui">MCTFlipFlopAction</A>
<DD>Gets the appropriate action to perform.
<DT><A HREF="./gov/nasa/arc/mct/gui/MenuItemInfo.html#getActionClass()"><B>getActionClass()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MenuItemInfo.html" title="class in gov.nasa.arc.mct.gui">MenuItemInfo</A>
<DD>This method returns the associated <CODE>Class</CODE> instance of a
<A HREF="./gov/nasa/arc/mct/gui/ContextAwareAction.html" title="class in gov.nasa.arc.mct.gui"><CODE>ContextAwareAction</CODE></A>.
<DT><A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html#getActions()"><B>getActions()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html" title="class in gov.nasa.arc.mct.gui">CompositeAction</A>
<DD>This method returns a set of actions that will replace this <A HREF="./gov/nasa/arc/mct/gui/CompositeAction.html" title="class in gov.nasa.arc.mct.gui"><CODE>CompositeAction</CODE></A>.
<DT><A HREF="./gov/nasa/arc/mct/gui/GroupAction.html#getActions()"><B>getActions()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/GroupAction.html" title="class in gov.nasa.arc.mct.gui">GroupAction</A>
<DD>This method returns a set of actions to be swapped for this <A HREF="./gov/nasa/arc/mct/gui/GroupAction.html" title="class in gov.nasa.arc.mct.gui"><CODE>GroupAction</CODE></A>.
<DT><A HREF="./gov/nasa/arc/mct/gui/FeedView.html#getAllActiveFeedManifestations()"><B>getAllActiveFeedManifestations()</B></A> -
Static method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/FeedView.html" title="class in gov.nasa.arc.mct.gui">FeedView</A>
<DD>Get all the active feed manifestations.
<DT><A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html#getAllProperties()"><B>getAllProperties()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/ExtendedProperties.html" title="class in gov.nasa.arc.mct.components">ExtendedProperties</A>
<DD>Returns all properties.
<DT><A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html#getAllTargetViewComponent()"><B>getAllTargetViewComponent()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/ActionContextImpl.html" title="class in gov.nasa.arc.mct.gui">ActionContextImpl</A>
<DD>Gets the set of all target view manifestations.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#getAllViewManifestations()"><B>getAllViewManifestations()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Gets all the currently monitored manifestations.
<DT><A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html#getAllViewRoleProperties()"><B>getAllViewRoleProperties()</B></A> -
Method in interface gov.nasa.arc.mct.services.internal.component.<A HREF="./gov/nasa/arc/mct/services/internal/component/ComponentInitializer.html" title="interface in gov.nasa.arc.mct.services.internal.component">ComponentInitializer</A>
<DD>Gets all the view role extended properties.
<DT><A HREF="./gov/nasa/arc/mct/components/PropertyEditor.html#getAsText()"><B>getAsText()</B></A> -
Method in interface gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/PropertyEditor.html" title="interface in gov.nasa.arc.mct.components">PropertyEditor</A>
<DD>Gets the property value as text.
<DT><A HREF="./gov/nasa/arc/mct/components/TextInitializer.html#getAsText()"><B>getAsText()</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/TextInitializer.html" title="class in gov.nasa.arc.mct.components">TextInitializer</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#getBorderColor()"><B>getBorderColor()</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Gets the border color to use in drawing the borders.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#getBorderColor()"><B>getBorderColor()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#getBorders()"><B>getBorders()</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Gets the border indications for the view manifestation.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#getBorders()"><B>getBorders()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#getBorderStyle()"><B>getBorderStyle()</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Gets the style to use in drawing the borders.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#getBorderStyle()"><B>getBorderStyle()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentProvider.html#getBundleSymbolicName()"><B>getBundleSymbolicName()</B></A> -
Method in class gov.nasa.arc.mct.registry.<A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentProvider.html" title="class in gov.nasa.arc.mct.registry">ExternalComponentRegistryImpl.ExtendedComponentProvider</A>
<DD>Gets the symbolic name of the bundle containing the base provider.
<DT><A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentTypeInfo.html#getBundleSymbolicName()"><B>getBundleSymbolicName()</B></A> -
Method in class gov.nasa.arc.mct.registry.<A HREF="./gov/nasa/arc/mct/registry/ExternalComponentRegistryImpl.ExtendedComponentTypeInfo.html" title="class in gov.nasa.arc.mct.registry">ExternalComponentRegistryImpl.ExtendedComponentTypeInfo</A>
<DD>Gets the symbolic name of the bundle we're wrapping.
<DT><A HREF="./gov/nasa/arc/mct/components/FeedProvider.html#getCanonicalName()"><B>getCanonicalName()</B></A> -
Method in interface gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/FeedProvider.html" title="interface in gov.nasa.arc.mct.components">FeedProvider</A>
<DD>Returns the name of the feed.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#getCapabilities(java.lang.Class)"><B>getCapabilities(Class<T>)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Provide multiple capabilities for a capability class.
<DT><A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html#getCapability(java.lang.Class)"><B>getCapability(Class<T>)</B></A> -
Method in class gov.nasa.arc.mct.components.<A HREF="./gov/nasa/arc/mct/components/AbstractComponent.html" title="class in gov.nasa.arc.mct.components">AbstractComponent</A>
<DD>Gets an instance of the capability.
<DT><A HREF="./gov/nasa/arc/mct/policy/PolicyInfo.html#getCategoryKey()"><B>getCategoryKey()</B></A> -
Method in class gov.nasa.arc.mct.policy.<A HREF="./gov/nasa/arc/mct/policy/PolicyInfo.html" title="class in gov.nasa.arc.mct.policy">PolicyInfo</A>
<DD>Returns the category key provided in this <code>PolicyInfo</code>.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html#getChildAt(int)"><B>getChildAt(int)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html" title="class in gov.nasa.arc.mct.gui">MCTMutableTreeNode</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html#getChildComponent()"><B>getChildComponent()</B></A> -
Method in class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">AddChildEvent</A>
<DD>Gets the new child component that as been added.
<DT><A HREF="./gov/nasa/arc/mct/roles/events/RemoveChildEvent.html#getChildComponent()"><B>getChildComponent()</B></A> -
Method in class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/RemoveChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">RemoveChildEvent</A>
<DD>Gets the delegate (child) component for this event.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html#getChildCount()"><B>getChildCount()</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTMutableTreeNode.html" title="class in gov.nasa.arc.mct.gui">MCTMutableTreeNode</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html#getChildIndex()"><B>getChildIndex()</B></A> -
Method in class gov.nasa.arc.mct.roles.events.<A HREF="./gov/nasa/arc/mct/roles/events/AddChildEvent.html" title="class in gov.nasa.arc.mct.roles.events">AddChildEvent</A>
<DD>Gets the index within existing children where the child was added,
or -1 to add at the end.
<DT><A HREF="./gov/nasa/arc/mct/evaluator/api/Evaluator.html#getCode()"><B>getCode()</B></A> -
Method in interface gov.nasa.arc.mct.evaluator.api.<A HREF="./gov/nasa/arc/mct/evaluator/api/Evaluator.html" title="interface in gov.nasa.arc.mct.evaluator.api">Evaluator</A>
<DD>Get a textual representation of the evaluator, that can be displayed for user viewing.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html#getColor(java.lang.String)"><B>getColor(String)</B></A> -
Method in interface gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfo.html" title="interface in gov.nasa.arc.mct.gui">MCTViewManifestationInfo</A>
<DD>Get a named color.
<DT><A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html#getColor(java.lang.String)"><B>getColor(String)</B></A> -
Method in class gov.nasa.arc.mct.gui.<A HREF="./gov/nasa/arc/mct/gui/MCTViewManifestationInfoImpl.html" title="class in gov.nasa.arc.mct.gui">MCTViewManifestationInfoImpl</A>
<DD>
<DT><A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html#getColorMap()"><B>getColorMap()</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/StandardComboBoxColors.html" title="class in gov.nasa.arc.mct.util">StandardComboBoxColors</A>
<DD>Gets the color map.
<DT><A HREF="./gov/nasa/arc/mct/util/LookAndFeelSettings.html#getColorProperties()"><B>getColorProperties()</B></A> -
Static method in enum gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/LookAndFeelSettings.html" title="enum in gov.nasa.arc.mct.util">LookAndFeelSettings</A>
<DD>Gets the base color properties.
<DT><A HREF="./gov/nasa/arc/mct/util/ColorScheme.html#getColorSchemeFor(java.lang.String)"><B>getColorSchemeFor(String)</B></A> -
Method in class gov.nasa.arc.mct.util.<A HREF="./gov/nasa/arc/mct/util/ColorScheme.html" title="class in gov.nasa.arc.mct.util">ColorScheme</A>