This file is indexed.

/usr/share/doc/libswing-layout-java/api/org/jdesktop/layout/GroupLayout.html is in libswing-layout-java-doc 1.0.4-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_21) on Mon May 27 23:52:05 UTC 2013 -->
<title>GroupLayout</title>
<meta name="date" content="2013-05-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="GroupLayout";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/jdesktop/layout/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/GroupLayout.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/jdesktop/layout/Baseline.html" title="class in org.jdesktop.layout"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/jdesktop/layout/GroupLayout.html" target="_top">Frames</a></li>
<li><a href="GroupLayout.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.jdesktop.layout</div>
<h2 title="Class GroupLayout" class="title">Class GroupLayout</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.jdesktop.layout.GroupLayout</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.awt.LayoutManager, java.awt.LayoutManager2</dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">GroupLayout</span>
extends java.lang.Object
implements java.awt.LayoutManager2</pre>
<div class="block">GroupLayout is a LayoutManager that hierarchically groups components to
 achieve common, and not so common, layouts.  Grouping is done by instances
 of the Group class.  GroupLayout supports two types of groups:
 <table>
   <tr><td valign=top>Sequential:<td>A sequential group positions its child
           elements sequentially, one after another.
   <tr><td valign=top>Parallel:<td>A parallel group positions its child 
           elements in the same space on top of each other.  Parallel groups 
           can also align the child elements along their baseline.
 </table>
 Each Group can contain any number of child groups, Components or gaps.
 GroupLayout treats each axis independently.  That is, there is a group
 representing the horizontal axis, and a separate group representing the
 vertical axis.  The horizontal group is responsible for setting the x
 and width of its contents, where as the vertical group is responsible for
 setting the y and height of its contents.
 <p>
 The following code builds a simple layout consisting of two labels in
 one column, followed by two textfields in the next column:
 <pre>
   JComponent panel = ...;
   GroupLayout layout = new GroupLayout(panel);
   panel.setLayout(layout);
   layout.setAutocreateGaps(true);
   layout.setAutocreateContainerGaps(true);
   GroupLayout.SequentialGroup hGroup = layout.createSequentialGroup();
   hGroup.add(layout.createParallelGroup().add(label1).add(label2)).
          add(layout.createParallelGroup().add(tf1).add(tf2));
   layout.setHorizontalGroup(hGroup);
   GroupLayout.SequentialGroup vGroup = layout.createSequentialGroup();
   vGroup.add(layout.createParallelGroup(GroupLayout.BASELINE).add(label1).add(tf1)).
          add(layout.createParallelGroup(GroupLayout.BASELINE).add(label2).add(tf2));
   layout.setVerticalGroup(vGroup);
 </pre>
 <p>
 This layout consists of the following:
 <ul><li>The horizontal axis consists of a sequential group containing two
         parallel groups.  The first parallel group consists of the labels,
         with the second parallel group consisting of the text fields.
     <li>The vertical axis similarly consists of a sequential group
         containing two parallel groups.  The parallel groups align their
         contents along the baseline.  The first parallel group consists
         of the first label and text field, and the second group consists
         of the second label and text field.
 </ul>
 There are a couple of things to notice in this code:
 <ul>
   <li>You need not explicitly add the components to the container, this
       is indirectly done by using one of the <code>add</code> methods.
   <li>The various <code>add</code> methods of <code>Groups</code> return
       themselves.  This allows for easy chaining of invocations.  For
       example, <code>group.add(label1).add(label2);</code> is equivalent to
       <code>group.add(label1);group.add(label2);</code>.
   <li>There are no public constructors for the Groups, instead
       use the create methods of <code>GroupLayout</code>.
 </ul>
 GroupLayout offer the ability to automatically insert the appropriate gap
 between components.  This can be turned on using the
 <code>setAutocreateGaps()</code> method.  Similarly you can use
 the <code>setAutocreateContainerGaps()</code> method to insert gaps
 between the components and the container.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a></strong></code>
<div class="block">Group provides for commonality between the two types of operations
 supported by <code>GroupLayout</code>: laying out components one
 after another (<code>SequentialGroup</code>) or layout on top
 of each other (<code>ParallelGroup</code>).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a></strong></code>
<div class="block">A <code>Group</code> that lays out its elements on top of each
 other.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.SequentialGroup.html" title="class in org.jdesktop.layout">GroupLayout.SequentialGroup</a></strong></code>
<div class="block">A <code>Group</code> that lays out its elements sequentially, one
 after another.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#BASELINE">BASELINE</a></strong></code>
<div class="block">Possible alignment type.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#CENTER">CENTER</a></strong></code>
<div class="block">Possible alignment type.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#DEFAULT_SIZE">DEFAULT_SIZE</a></strong></code>
<div class="block">Possible value for the add methods that takes a Component.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#HORIZONTAL">HORIZONTAL</a></strong></code>
<div class="block">Possible argument when linking sizes of components.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#LEADING">LEADING</a></strong></code>
<div class="block">Possible alignment type.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#PREFERRED_SIZE">PREFERRED_SIZE</a></strong></code>
<div class="block">Possible value for the add methods that takes a Component.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#TRAILING">TRAILING</a></strong></code>
<div class="block">Possible alignment type.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#VERTICAL">VERTICAL</a></strong></code>
<div class="block">Possible argument when linking sizes of components.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#GroupLayout(java.awt.Container)">GroupLayout</a></strong>(java.awt.Container&nbsp;host)</code>
<div class="block">Creates a GroupLayout for the specified JComponent.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#addLayoutComponent(java.awt.Component, java.lang.Object)">addLayoutComponent</a></strong>(java.awt.Component&nbsp;component,
                  java.lang.Object&nbsp;constraints)</code>
<div class="block">Notification that a <code>Component</code> has been added to
 the parent container.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#addLayoutComponent(java.lang.String, java.awt.Component)">addLayoutComponent</a></strong>(java.lang.String&nbsp;name,
                  java.awt.Component&nbsp;component)</code>
<div class="block">Notification that a <code>Component</code> has been added to
 the parent container.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#createBaselineGroup(boolean, boolean)">createBaselineGroup</a></strong>(boolean&nbsp;resizable,
                   boolean&nbsp;anchorBaselineToTop)</code>
<div class="block">Creates and returns a <code>ParallelGroup</code> that aligns it's
 elements along the baseline.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup()">createParallelGroup</a></strong>()</code>
<div class="block">Creates and returns a <code>ParallelGroup</code> with a
 <code>LEADING</code> alignment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)">createParallelGroup</a></strong>(int&nbsp;alignment)</code>
<div class="block">Creates and returns an <code>ParallelGroup</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int, boolean)">createParallelGroup</a></strong>(int&nbsp;alignment,
                   boolean&nbsp;resizable)</code>
<div class="block">Creates and returns an <code>ParallelGroup</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.SequentialGroup.html" title="class in org.jdesktop.layout">GroupLayout.SequentialGroup</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#createSequentialGroup()">createSequentialGroup</a></strong>()</code>
<div class="block">Creates and returns a <code>SequentialGroup</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getAutocreateContainerGaps()">getAutocreateContainerGaps</a></strong>()</code>
<div class="block">Returns whether or not gaps between the container and the
 first/last components should automatically be created.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getAutocreateGaps()">getAutocreateGaps</a></strong>()</code>
<div class="block">Returns true if gaps between components are automatically be created.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getHonorsVisibility()">getHonorsVisibility</a></strong>()</code>
<div class="block">Returns whether component visiblity is considered when sizing and
 positioning components.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getHorizontalGroup()">getHorizontalGroup</a></strong>()</code>
<div class="block">Returns the <code>Group</code> that is responsible for
 layout along the horizontal axis.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getLayoutAlignmentX(java.awt.Container)">getLayoutAlignmentX</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Returns the alignment along the x axis.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getLayoutAlignmentY(java.awt.Container)">getLayoutAlignmentY</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Returns the alignment along the y axis.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/LayoutStyle.html" title="class in org.jdesktop.layout">LayoutStyle</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getLayoutStyle()">getLayoutStyle</a></strong>()</code>
<div class="block">Returns the LayoutStyle instance to use</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#getVerticalGroup()">getVerticalGroup</a></strong>()</code>
<div class="block">Returns the <code>ParallelGroup</code> that is responsible for
 layout along the vertical axis.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#invalidateLayout(java.awt.Container)">invalidateLayout</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Invalidates the layout, indicating that if the layout manager
 has cached information it should be discarded.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#layoutContainer(java.awt.Container)">layoutContainer</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Lays out the specified container.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#linkSize(java.awt.Component[])">linkSize</a></strong>(java.awt.Component[]&nbsp;components)</code>
<div class="block">Forces the set of components to have the same size.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#linkSize(java.awt.Component[], int)">linkSize</a></strong>(java.awt.Component[]&nbsp;components,
        int&nbsp;axis)</code>
<div class="block">Forces the set of components to have the same size.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.awt.Dimension</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#maximumLayoutSize(java.awt.Container)">maximumLayoutSize</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Returns the maximum size for the specified container.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.awt.Dimension</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#minimumLayoutSize(java.awt.Container)">minimumLayoutSize</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Returns the minimum size for the specified container.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.awt.Dimension</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#preferredLayoutSize(java.awt.Container)">preferredLayoutSize</a></strong>(java.awt.Container&nbsp;parent)</code>
<div class="block">Returns the preferred size for the specified container.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#removeLayoutComponent(java.awt.Component)">removeLayoutComponent</a></strong>(java.awt.Component&nbsp;component)</code>
<div class="block">Notification that a <code>Component</code> has been removed from
 the parent container.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#replace(java.awt.Component, java.awt.Component)">replace</a></strong>(java.awt.Component&nbsp;existingComponent,
       java.awt.Component&nbsp;newComponent)</code>
<div class="block">Removes an existing component replacing it with the specified component.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setAutocreateContainerGaps(boolean)">setAutocreateContainerGaps</a></strong>(boolean&nbsp;autocreatePadding)</code>
<div class="block">Sets whether or not gaps between the container and the first/last
 components should automatically be created.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setAutocreateGaps(boolean)">setAutocreateGaps</a></strong>(boolean&nbsp;autocreatePadding)</code>
<div class="block">Sets whether or not a gap between components 
 should automatically be created.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setHonorsVisibility(boolean)">setHonorsVisibility</a></strong>(boolean&nbsp;honorsVisibility)</code>
<div class="block">Sets whether component visiblity is considered when sizing and
 positioning components.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setHonorsVisibility(java.awt.Component, java.lang.Boolean)">setHonorsVisibility</a></strong>(java.awt.Component&nbsp;component,
                   java.lang.Boolean&nbsp;honorsVisibility)</code>
<div class="block">Sets whether the component's visiblity is considered for
 sizing and positioning.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setHorizontalGroup(org.jdesktop.layout.GroupLayout.Group)">setHorizontalGroup</a></strong>(<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;group)</code>
<div class="block">Sets the <code>Group</code> that is responsible for
 layout along the horizontal axis.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setLayoutStyle(org.jdesktop.layout.LayoutStyle)">setLayoutStyle</a></strong>(<a href="../../../org/jdesktop/layout/LayoutStyle.html" title="class in org.jdesktop.layout">LayoutStyle</a>&nbsp;layoutStyle)</code>
<div class="block">Sets the LayoutStyle this GroupLayout is to use.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#setVerticalGroup(org.jdesktop.layout.GroupLayout.Group)">setVerticalGroup</a></strong>(<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;group)</code>
<div class="block">Sets the <code>Group</code> that is responsible for
 layout along the vertical axis.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/jdesktop/layout/GroupLayout.html#toString()">toString</a></strong>()</code>
<div class="block">Returns a textual description of this GroupLayout.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="HORIZONTAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HORIZONTAL</h4>
<pre>public static final&nbsp;int HORIZONTAL</pre>
<div class="block">Possible argument when linking sizes of components.  Specifies the
 the two component should share the same size along the horizontal
 axis.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#linkSize(java.awt.Component[], int)"><code>linkSize(java.awt.Component[],int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.HORIZONTAL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="VERTICAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VERTICAL</h4>
<pre>public static final&nbsp;int VERTICAL</pre>
<div class="block">Possible argument when linking sizes of components.  Specifies the
 the two component should share the same size along the vertical
 axis.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#linkSize(java.awt.Component[], int)"><code>linkSize(java.awt.Component[],int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.VERTICAL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="LEADING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LEADING</h4>
<pre>public static final&nbsp;int LEADING</pre>
<div class="block">Possible alignment type.  Indicates the elements should be
 aligned to the origin.  For the horizontal axis with a left to
 right orientation this means aligned to the left.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)"><code>createParallelGroup(int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.LEADING">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TRAILING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TRAILING</h4>
<pre>public static final&nbsp;int TRAILING</pre>
<div class="block">Possible alignment type.  Indicates the elements should be
 aligned to the end.  For the horizontal axis with a left to
 right orientation this means aligned to the right.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)"><code>createParallelGroup(int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.TRAILING">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="CENTER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CENTER</h4>
<pre>public static final&nbsp;int CENTER</pre>
<div class="block">Possible alignment type.  Indicates the elements should centered in
 the spaced provided.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)"><code>createParallelGroup(int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.CENTER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="BASELINE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BASELINE</h4>
<pre>public static final&nbsp;int BASELINE</pre>
<div class="block">Possible alignment type.  Indicates the elements should aligned along
 their baseline.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)"><code>createParallelGroup(int)</code></a>, 
<a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.BASELINE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DEFAULT_SIZE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_SIZE</h4>
<pre>public static final&nbsp;int DEFAULT_SIZE</pre>
<div class="block">Possible value for the add methods that takes a Component.
 Indicates the size from the component should be used.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.DEFAULT_SIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PREFERRED_SIZE">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>PREFERRED_SIZE</h4>
<pre>public static final&nbsp;int PREFERRED_SIZE</pre>
<div class="block">Possible value for the add methods that takes a Component.
 Indicates the preferred size should be used.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.jdesktop.layout.GroupLayout.PREFERRED_SIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="GroupLayout(java.awt.Container)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>GroupLayout</h4>
<pre>public&nbsp;GroupLayout(java.awt.Container&nbsp;host)</pre>
<div class="block">Creates a GroupLayout for the specified JComponent.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>host</code> - the Container to layout</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if host is null</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="setHonorsVisibility(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHonorsVisibility</h4>
<pre>public&nbsp;void&nbsp;setHonorsVisibility(boolean&nbsp;honorsVisibility)</pre>
<div class="block">Sets whether component visiblity is considered when sizing and
 positioning components. A value of <code>true</code> indicates that
 non-visible components should not be treated as part of the
 layout. A value of <code>false</code> indicates that components should be
 positioned and sized regardless of visibility.
 <p>
 A value of <code>false</code> is useful when the visibility of components
 is dynamically adjusted and you don't want surrounding components and
 the sizing to change.
 <p>
 The specified value is used for components that do not have an
 explicit visibility specified.
 <p>
 The default is <code>true</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>honorsVisibility</code> - whether component visiblity is considered when
                         sizing and positioning components</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#setHonorsVisibility(java.awt.Component, java.lang.Boolean)"><code>setHonorsVisibility(Component,Boolean)</code></a></dd></dl>
</li>
</ul>
<a name="getHonorsVisibility()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHonorsVisibility</h4>
<pre>public&nbsp;boolean&nbsp;getHonorsVisibility()</pre>
<div class="block">Returns whether component visiblity is considered when sizing and
 positioning components.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>whether component visiblity is considered when sizing and
         positioning components</dd></dl>
</li>
</ul>
<a name="setHonorsVisibility(java.awt.Component, java.lang.Boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHonorsVisibility</h4>
<pre>public&nbsp;void&nbsp;setHonorsVisibility(java.awt.Component&nbsp;component,
                       java.lang.Boolean&nbsp;honorsVisibility)</pre>
<div class="block">Sets whether the component's visiblity is considered for
 sizing and positioning. A value of <code>Boolean.TRUE</code>
 indicates that if <code>component</code> is not visible it should
 not be treated as part of the layout. A value of <code>false</code>
 indicates that <code>component</code> is positioned and sized
 regardless of it's visibility.  A value of <code>null</code>
 indicates the value specified by the single argument method <code>
 setHonorsVisibility</code> should be used.
 <p>
 If <code>component</code> is not a child of the <code>Container</code> this
 <code>GroupLayout</code> is managing, it will be added to the
 <code>Container</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - the component</dd><dd><code>honorsVisibility</code> - whether <code>component</code>'s visiblity should be
              considered for sizing and positioning</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>component</code> is <code>null</code></dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#setHonorsVisibility(boolean)"><code>setHonorsVisibility(boolean)</code></a></dd></dl>
</li>
</ul>
<a name="toString()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toString()</pre>
<div class="block">Returns a textual description of this GroupLayout.  The return value
 is intended for debugging purposes only.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd>
<dt><span class="strong">Returns:</span></dt><dd>textual description of this GroupLayout</dd></dl>
</li>
</ul>
<a name="setAutocreateGaps(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAutocreateGaps</h4>
<pre>public&nbsp;void&nbsp;setAutocreateGaps(boolean&nbsp;autocreatePadding)</pre>
<div class="block">Sets whether or not a gap between components 
 should automatically be created.  For example, if this is true
 and you add two components to a <code>SequentialGroup</code> a
 gap between the two will automatically be created.  The default
 is false.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>autocreatePadding</code> - whether or not to automatically created a gap
        between components and the container</dd></dl>
</li>
</ul>
<a name="getAutocreateGaps()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAutocreateGaps</h4>
<pre>public&nbsp;boolean&nbsp;getAutocreateGaps()</pre>
<div class="block">Returns true if gaps between components are automatically be created.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if gaps between components should automatically be created</dd></dl>
</li>
</ul>
<a name="setAutocreateContainerGaps(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAutocreateContainerGaps</h4>
<pre>public&nbsp;void&nbsp;setAutocreateContainerGaps(boolean&nbsp;autocreatePadding)</pre>
<div class="block">Sets whether or not gaps between the container and the first/last
 components should automatically be created. The default
 is false.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>autocreatePadding</code> - whether or not to automatically create
        gaps between the container and first/last components.</dd></dl>
</li>
</ul>
<a name="getAutocreateContainerGaps()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAutocreateContainerGaps</h4>
<pre>public&nbsp;boolean&nbsp;getAutocreateContainerGaps()</pre>
<div class="block">Returns whether or not gaps between the container and the
 first/last components should automatically be created. The default
 is false.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>whether or not the gaps between the container and the
         first/last components should automatically be created</dd></dl>
</li>
</ul>
<a name="setHorizontalGroup(org.jdesktop.layout.GroupLayout.Group)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHorizontalGroup</h4>
<pre>public&nbsp;void&nbsp;setHorizontalGroup(<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;group)</pre>
<div class="block">Sets the <code>Group</code> that is responsible for
 layout along the horizontal axis.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>group</code> - <code>Group</code> responsible for layout along
          the horizontal axis</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if group is null</dd></dl>
</li>
</ul>
<a name="getHorizontalGroup()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHorizontalGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;getHorizontalGroup()</pre>
<div class="block">Returns the <code>Group</code> that is responsible for
 layout along the horizontal axis.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>ParallelGroup</code> responsible for layout along
          the horizontal axis.</dd></dl>
</li>
</ul>
<a name="setVerticalGroup(org.jdesktop.layout.GroupLayout.Group)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setVerticalGroup</h4>
<pre>public&nbsp;void&nbsp;setVerticalGroup(<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;group)</pre>
<div class="block">Sets the <code>Group</code> that is responsible for
 layout along the vertical axis.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>group</code> - <code>Group</code> responsible for layout along
          the vertical axis.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if group is null.</dd></dl>
</li>
</ul>
<a name="getVerticalGroup()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVerticalGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout">GroupLayout.Group</a>&nbsp;getVerticalGroup()</pre>
<div class="block">Returns the <code>ParallelGroup</code> that is responsible for
 layout along the vertical axis.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>ParallelGroup</code> responsible for layout along
          the vertical axis.</dd></dl>
</li>
</ul>
<a name="createSequentialGroup()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSequentialGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.SequentialGroup.html" title="class in org.jdesktop.layout">GroupLayout.SequentialGroup</a>&nbsp;createSequentialGroup()</pre>
<div class="block">Creates and returns a <code>SequentialGroup</code>.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>a new <code>SequentialGroup</code></dd></dl>
</li>
</ul>
<a name="createParallelGroup()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createParallelGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a>&nbsp;createParallelGroup()</pre>
<div class="block">Creates and returns a <code>ParallelGroup</code> with a
 <code>LEADING</code> alignment.  This is a cover method for the more
 general <code>createParallelGroup(int)</code> method.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>a new ParallelGroup</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createParallelGroup(int)"><code>createParallelGroup(int)</code></a></dd></dl>
</li>
</ul>
<a name="createParallelGroup(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createParallelGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a>&nbsp;createParallelGroup(int&nbsp;alignment)</pre>
<div class="block">Creates and returns an <code>ParallelGroup</code>.  The alignment
 specifies how children elements should be positioned when the
 the parallel group is given more space than necessary.  For example,
 if a ParallelGroup with an alignment of TRAILING is given 100 pixels
 and a child only needs 50 pixels, the child will be positioned at the
 position 50.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>alignment</code> - alignment for the elements of the Group, one
        of <code>LEADING</code>, <code>TRAILING</code>,
        <code>CENTER</code> or <code>BASELINE</code>.</dd>
<dt><span class="strong">Returns:</span></dt><dd>a new <code>ParallelGroup</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if alignment is not one of
         <code>LEADING</code>, <code>TRAILING</code>,
         <code>CENTER</code> or <code>BASELINE</code></dd></dl>
</li>
</ul>
<a name="createParallelGroup(int, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createParallelGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a>&nbsp;createParallelGroup(int&nbsp;alignment,
                                            boolean&nbsp;resizable)</pre>
<div class="block">Creates and returns an <code>ParallelGroup</code>.  The alignment
 specifies how children elements should be positioned when the
 the parallel group is given more space than necessary.  For example,
 if a ParallelGroup with an alignment of TRAILING is given 100 pixels
 and a child only needs 50 pixels, the child will be positioned at the
 position 50.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>alignment</code> - alignment for the elements of the Group, one
        of <code>LEADING</code>, <code>TRAILING</code>,
        <code>CENTER</code> or <code>BASELINE</code>.</dd><dd><code>resizable</code> - whether or not the group is resizable.  If the group
        is not resizable the min/max size will be the same as the
        preferred.</dd>
<dt><span class="strong">Returns:</span></dt><dd>a new <code>ParallelGroup</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if alignment is not one of
         <code>LEADING</code>, <code>TRAILING</code>,
         <code>CENTER</code> or <code>BASELINE</code></dd></dl>
</li>
</ul>
<a name="createBaselineGroup(boolean, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createBaselineGroup</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout">GroupLayout.ParallelGroup</a>&nbsp;createBaselineGroup(boolean&nbsp;resizable,
                                            boolean&nbsp;anchorBaselineToTop)</pre>
<div class="block">Creates and returns a <code>ParallelGroup</code> that aligns it's
 elements along the baseline.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>resizable</code> - whether the group is resizable</dd><dd><code>anchorBaselineToTop</code> - whether the baseline is anchored to
        the top or bottom of the group</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/jdesktop/layout/GroupLayout.html#createBaselineGroup(boolean, boolean)"><code>createBaselineGroup(boolean, boolean)</code></a>, 
<a href="../../../org/jdesktop/layout/GroupLayout.ParallelGroup.html" title="class in org.jdesktop.layout"><code>GroupLayout.ParallelGroup</code></a></dd></dl>
</li>
</ul>
<a name="linkSize(java.awt.Component[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>linkSize</h4>
<pre>public&nbsp;void&nbsp;linkSize(java.awt.Component[]&nbsp;components)</pre>
<div class="block">Forces the set of components to have the same size.
 This can be used multiple times to force
 any number of components to share the same size.
 <p>
 Linked Components are not be resizable.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>components</code> - Components to force to have same size.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>components</code> is
         null, or contains null.</dd></dl>
</li>
</ul>
<a name="linkSize(java.awt.Component[], int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>linkSize</h4>
<pre>public&nbsp;void&nbsp;linkSize(java.awt.Component[]&nbsp;components,
            int&nbsp;axis)</pre>
<div class="block">Forces the set of components to have the same size.
 This can be used multiple times to force
 any number of components to share the same size.
 <p>
 Linked Components are not be resizable.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>components</code> - Components to force to have same size.</dd><dd><code>axis</code> - Axis to bind size, one of HORIZONTAL, VERTICAL or
             HORIZONTAL | VERTICAL</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>components</code> is
         null, or contains null.</dd>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>axis</code> does not
         contain <code>HORIZONTAL</code> or <code>VERTICAL</code></dd></dl>
</li>
</ul>
<a name="replace(java.awt.Component, java.awt.Component)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>replace</h4>
<pre>public&nbsp;void&nbsp;replace(java.awt.Component&nbsp;existingComponent,
           java.awt.Component&nbsp;newComponent)</pre>
<div class="block">Removes an existing component replacing it with the specified component.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>existingComponent</code> - the Component that should be removed and
        replaced with newComponent</dd><dd><code>newComponent</code> - the Component to put in existingComponents place</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - is either of the Components are null or
         if existingComponent is not being managed by this layout manager</dd></dl>
</li>
</ul>
<a name="setLayoutStyle(org.jdesktop.layout.LayoutStyle)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLayoutStyle</h4>
<pre>public&nbsp;void&nbsp;setLayoutStyle(<a href="../../../org/jdesktop/layout/LayoutStyle.html" title="class in org.jdesktop.layout">LayoutStyle</a>&nbsp;layoutStyle)</pre>
<div class="block">Sets the LayoutStyle this GroupLayout is to use. A value of null can
 be used to indicate the shared instance of LayoutStyle should be used.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>layoutStyle</code> - the LayoutStyle to use</dd></dl>
</li>
</ul>
<a name="getLayoutStyle()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLayoutStyle</h4>
<pre>public&nbsp;<a href="../../../org/jdesktop/layout/LayoutStyle.html" title="class in org.jdesktop.layout">LayoutStyle</a>&nbsp;getLayoutStyle()</pre>
<div class="block">Returns the LayoutStyle instance to use</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the LayoutStyle instance to use</dd></dl>
</li>
</ul>
<a name="addLayoutComponent(java.lang.String, java.awt.Component)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addLayoutComponent</h4>
<pre>public&nbsp;void&nbsp;addLayoutComponent(java.lang.String&nbsp;name,
                      java.awt.Component&nbsp;component)</pre>
<div class="block">Notification that a <code>Component</code> has been added to
 the parent container.  Developers should not invoke this method
 directly, instead you should use one of the <code>Group</code>
 methods to add a <code>Component</code>.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>addLayoutComponent</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the string to be associated with the component</dd><dd><code>component</code> - the <code>Component</code> to be added</dd></dl>
</li>
</ul>
<a name="removeLayoutComponent(java.awt.Component)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>removeLayoutComponent</h4>
<pre>public&nbsp;void&nbsp;removeLayoutComponent(java.awt.Component&nbsp;component)</pre>
<div class="block">Notification that a <code>Component</code> has been removed from
 the parent container.  You should not invoke this method
 directly, instead invoke <code>remove</code> on the parent
 <code>Container</code>.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>removeLayoutComponent</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - the component to be removed</dd><dt><span class="strong">See Also:</span></dt><dd><code>Component.remove(java.awt.MenuComponent)</code></dd></dl>
</li>
</ul>
<a name="preferredLayoutSize(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>preferredLayoutSize</h4>
<pre>public&nbsp;java.awt.Dimension&nbsp;preferredLayoutSize(java.awt.Container&nbsp;parent)</pre>
<div class="block">Returns the preferred size for the specified container.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>preferredLayoutSize</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - the container to return size for</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd>
<dd><code>java.lang.IllegalStateException</code> - if any of the components added to
         this layout are not in both a horizontal and vertical group</dd><dt><span class="strong">See Also:</span></dt><dd><code>Container.getPreferredSize()</code></dd></dl>
</li>
</ul>
<a name="minimumLayoutSize(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>minimumLayoutSize</h4>
<pre>public&nbsp;java.awt.Dimension&nbsp;minimumLayoutSize(java.awt.Container&nbsp;parent)</pre>
<div class="block">Returns the minimum size for the specified container.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>minimumLayoutSize</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - the container to return size for</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd>
<dd><code>java.lang.IllegalStateException</code> - if any of the components added to
         this layout are not in both a horizontal and vertical group</dd><dt><span class="strong">See Also:</span></dt><dd><code>Container.getMinimumSize()</code></dd></dl>
</li>
</ul>
<a name="layoutContainer(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>layoutContainer</h4>
<pre>public&nbsp;void&nbsp;layoutContainer(java.awt.Container&nbsp;parent)</pre>
<div class="block">Lays out the specified container.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>layoutContainer</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - the container to be laid out</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - if any of the components added to
         this layout are not in both a horizontal and vertical group</dd></dl>
</li>
</ul>
<a name="addLayoutComponent(java.awt.Component, java.lang.Object)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addLayoutComponent</h4>
<pre>public&nbsp;void&nbsp;addLayoutComponent(java.awt.Component&nbsp;component,
                      java.lang.Object&nbsp;constraints)</pre>
<div class="block">Notification that a <code>Component</code> has been added to
 the parent container.  You should not invoke this method
 directly, instead you should use one of the <code>Group</code>
 methods to add a <code>Component</code>.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>addLayoutComponent</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager2</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - The component added</dd><dd><code>constraints</code> - Description of where to place the component.</dd></dl>
</li>
</ul>
<a name="maximumLayoutSize(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>maximumLayoutSize</h4>
<pre>public&nbsp;java.awt.Dimension&nbsp;maximumLayoutSize(java.awt.Container&nbsp;parent)</pre>
<div class="block">Returns the maximum size for the specified container.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>maximumLayoutSize</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager2</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - the container to return size for</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd>
<dd><code>java.lang.IllegalStateException</code> - if any of the components added to
         this layout are not in both a horizontal and vertical group</dd><dt><span class="strong">See Also:</span></dt><dd><code>Container.getMaximumSize()</code></dd></dl>
</li>
</ul>
<a name="getLayoutAlignmentX(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLayoutAlignmentX</h4>
<pre>public&nbsp;float&nbsp;getLayoutAlignmentX(java.awt.Container&nbsp;parent)</pre>
<div class="block">Returns the alignment along the x axis.  This specifies how
 the component would like to be aligned relative to other
 components.  The value should be a number between 0 and 1
 where 0 represents alignment along the origin, 1 is aligned
 the furthest away from the origin, 0.5 is centered, etc.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getLayoutAlignmentX</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager2</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - Container hosting this LayoutManager</dd>
<dt><span class="strong">Returns:</span></dt><dd>alignment</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd></dl>
</li>
</ul>
<a name="getLayoutAlignmentY(java.awt.Container)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLayoutAlignmentY</h4>
<pre>public&nbsp;float&nbsp;getLayoutAlignmentY(java.awt.Container&nbsp;parent)</pre>
<div class="block">Returns the alignment along the y axis.  This specifies how
 the component would like to be aligned relative to other
 components.  The value should be a number between 0 and 1
 where 0 represents alignment along the origin, 1 is aligned
 the furthest away from the origin, 0.5 is centered, etc.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getLayoutAlignmentY</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager2</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - Container hosting this LayoutManager</dd>
<dt><span class="strong">Returns:</span></dt><dd>alignment</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd></dl>
</li>
</ul>
<a name="invalidateLayout(java.awt.Container)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>invalidateLayout</h4>
<pre>public&nbsp;void&nbsp;invalidateLayout(java.awt.Container&nbsp;parent)</pre>
<div class="block">Invalidates the layout, indicating that if the layout manager
 has cached information it should be discarded.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>invalidateLayout</code>&nbsp;in interface&nbsp;<code>java.awt.LayoutManager2</code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - Container hosting this LayoutManager</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if <code>parent</code> is not
         the same <code>Container</code> that this was created with</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/jdesktop/layout/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/GroupLayout.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/jdesktop/layout/Baseline.html" title="class in org.jdesktop.layout"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/jdesktop/layout/GroupLayout.Group.html" title="class in org.jdesktop.layout"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/jdesktop/layout/GroupLayout.html" target="_top">Frames</a></li>
<li><a href="GroupLayout.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>