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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_76) on Mon Feb 02 17:26:21 CET 2015 -->
<title>AbstractFormBuilder (JGoodies Forms 1.9 API)</title>
<meta name="date" content="2015-02-02">
<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="AbstractFormBuilder (JGoodies Forms 1.9 API)";
}
//-->
</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="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AbstractFormBuilder.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-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../com/jgoodies/forms/internal/FocusTraversalUtilsAccessor.html" title="class in com.jgoodies.forms.internal"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/jgoodies/forms/internal/AbstractFormBuilder.html" target="_top">Frames</a></li>
<li><a href="AbstractFormBuilder.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: </li>
<li>Nested | </li>
<li><a href="#fields_inherited_from_class_com.jgoodies.forms.internal.AbstractBuilder">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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">com.jgoodies.forms.internal</div>
<h2 title="Class AbstractFormBuilder" class="title">Class AbstractFormBuilder<B extends AbstractFormBuilder<B>></h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">com.jgoodies.forms.internal.AbstractBuilder</a><B></li>
<li>
<ul class="inheritance">
<li>com.jgoodies.forms.internal.AbstractFormBuilder<B></li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../../com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="strong">AbstractFormBuilder<B extends AbstractFormBuilder<B>></span>
extends <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a><B></pre>
<div class="block">An abstract class that minimizes the effort required to implement
non-visual builders that use the <a href="../../../../com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>.<p>
Builders hide details of the FormLayout and provide convenience behavior
that assists you in constructing a form.
This class provides a cell cursor that helps you traverse a form while
you add components. Also, it offers several methods to append custom
and logical columns and rows.</div>
<dl><dt><span class="strong">Version:</span></dt>
<dd>$Revision: 1.16 $</dd>
<dt><span class="strong">Author:</span></dt>
<dd>Karsten Lentzsch</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_com.jgoodies.forms.internal.AbstractBuilder">
<!-- -->
</a>
<h3>Fields inherited from class com.jgoodies.forms.internal.<a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></h3>
<code><a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#currentCellConstraints">currentCellConstraints</a></code></li>
</ul>
</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"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier</th>
<th class="colLast" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected </code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#AbstractFormBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">AbstractFormBuilder</a></strong>(<a href="../../../../com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a> layout,
<a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/JPanel.html?is-external=true" title="class or interface in javax.swing">JPanel</a> panel)</code>
<div class="block">Constructs an AbstractFormBuilder
for the given FormLayout and layout container.</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"> </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><a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a></code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component)">add</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component)</code>
<div class="block">Adds a component to the container using the default cell constraints.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a></code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">add</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component,
<a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a> cellConstraints)</code>
<div class="block">Adds a component to the panel using the given cell constraints.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a></code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20java.lang.String)">add</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedCellConstraints)</code>
<div class="block">Adds a component to the panel using the given encoded cell constraints.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(com.jgoodies.forms.layout.ColumnSpec)">appendColumn</a></strong>(<a href="../../../../com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a> columnSpec)</code>
<div class="block">Appends the given column specification to the builder's layout.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(java.lang.String)">appendColumn</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedColumnSpec)</code>
<div class="block">Appends a column specification to the builder's layout
that represents the given string encoding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueColumn()">appendGlueColumn</a></strong>()</code>
<div class="block">Appends a glue column.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueRow()">appendGlueRow</a></strong>()</code>
<div class="block">Appends a glue row.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendLabelComponentsGapColumn()">appendLabelComponentsGapColumn</a></strong>()</code>
<div class="block">Appends a column that is the default gap between a label and
its associated component.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendParagraphGapRow()">appendParagraphGapRow</a></strong>()</code>
<div class="block">Appends a row that is the default gap for paragraphs.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapColumn()">appendRelatedComponentsGapColumn</a></strong>()</code>
<div class="block">Appends a column that is the default gap for related components.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapRow()">appendRelatedComponentsGapRow</a></strong>()</code>
<div class="block">Appends a row that is the default gap for related components.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(com.jgoodies.forms.layout.RowSpec)">appendRow</a></strong>(<a href="../../../../com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a> rowSpec)</code>
<div class="block">Appends the given row specification to the builder's layout.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(java.lang.String)">appendRow</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedRowSpec)</code>
<div class="block">Appends a row specification to the builder's layout that represents
the given string encoding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapColumn()">appendUnrelatedComponentsGapColumn</a></strong>()</code>
<div class="block">Appends a column that is the default gap for unrelated components.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapRow()">appendUnrelatedComponentsGapRow</a></strong>()</code>
<div class="block">Appends a row that is the default gap for unrelated components.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected <a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#cellConstraints()">cellConstraints</a></strong>()</code>
<div class="block">Returns the CellConstraints object that is used as a cursor and
holds the current column span and row span.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#createLeftAdjustedConstraints(int)">createLeftAdjustedConstraints</a></strong>(int columnSpan)</code>
<div class="block">Creates and returns a <code>CellConstraints</code> object at
the current cursor position that uses the given column span
and is adjusted to the left.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#getColumn()">getColumn</a></strong>()</code>
<div class="block">Returns the cursor's column.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#getColumnIncrementSign()">getColumnIncrementSign</a></strong>()</code>
<div class="block">Returns the sign (-1 or 1) used to increment the cursor's column
when moving to the next column.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#getLeadingColumn()">getLeadingColumn</a></strong>()</code>
<div class="block">Returns the index of the leading column.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#getRow()">getRow</a></strong>()</code>
<div class="block">Returns the cursor's row.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#isLeftToRight()">isLeftToRight</a></strong>()</code>
<div class="block">Returns whether this builder fills the form left-to-right
or right-to-left.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextColumn()">nextColumn</a></strong>()</code>
<div class="block">Moves to the next column, does the same as #nextColumn(1).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextColumn(int)">nextColumn</a></strong>(int columns)</code>
<div class="block">Moves to the next column.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextLine()">nextLine</a></strong>()</code>
<div class="block">Moves to the next line: increases the row and resets the column;
does the same as #nextLine(1).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextLine(int)">nextLine</a></strong>(int lines)</code>
<div class="block">Moves the cursor down several lines: increases the row by the
specified number of lines and sets the cursor to the leading column.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextRow()">nextRow</a></strong>()</code>
<div class="block">Increases the row by one; does the same as #nextRow(1).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#nextRow(int)">nextRow</a></strong>(int rows)</code>
<div class="block">Increases the row by the specified rows.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">setAlignment</a></strong>(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> hAlign,
<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> vAlign)</code>
<div class="block">Sets the horizontal and vertical alignment.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setBounds(int,%20int,%20int,%20int)">setBounds</a></strong>(int column,
int row,
int columnSpan,
int rowSpan)</code>
<div class="block">Sets the cell bounds (location and extent) to the given column, row,
column span and row span.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setColumn(int)">setColumn</a></strong>(int column)</code>
<div class="block">Sets the cursor to the given column.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setColumnSpan(int)">setColumnSpan</a></strong>(int columnSpan)</code>
<div class="block">Sets the cursor's column span.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setExtent(int,%20int)">setExtent</a></strong>(int columnSpan,
int rowSpan)</code>
<div class="block">Sets the cursor's extent to the given column span and row span.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setHAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">setHAlignment</a></strong>(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> alignment)</code>
<div class="block">Sets the horizontal alignment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setLeftToRight(boolean)">setLeftToRight</a></strong>(boolean b)</code>
<div class="block">Sets the form fill direction to left-to-right or right-to-left.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setOrigin(int,%20int)">setOrigin</a></strong>(int column,
int row)</code>
<div class="block">Sets the cursor's origin to the given column and row.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setRow(int)">setRow</a></strong>(int row)</code>
<div class="block">Sets the cursor to the given row.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setRowSpan(int)">setRowSpan</a></strong>(int rowSpan)</code>
<div class="block">Sets the cursor's row span.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setVAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">setVAlignment</a></strong>(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> alignment)</code>
<div class="block">Sets the vertical alignment.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.jgoodies.forms.internal.AbstractBuilder">
<!-- -->
</a>
<h3>Methods inherited from class com.jgoodies.forms.internal.<a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></h3>
<code><a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#background(java.awt.Color)">background</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#border(javax.swing.border.Border)">border</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#border(java.lang.String)">border</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#build()">build</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#createComponentFactory()">createComponentFactory</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getColumnCount()">getColumnCount</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getComponentFactory()">getComponentFactory</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getContainer()">getContainer</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getLayout()">getLayout</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getPanel()">getPanel</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#getRowCount()">getRowCount</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#opaque(boolean)">opaque</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#padding(javax.swing.border.EmptyBorder)">padding</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding</a>, <a href="../../../../com/jgoodies/forms/internal/AbstractBuilder.html#setComponentFactory(com.jgoodies.forms.factories.ComponentFactory)">setComponentFactory</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="AbstractFormBuilder(com.jgoodies.forms.layout.FormLayout, javax.swing.JPanel)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>AbstractFormBuilder</h4>
<pre>protected AbstractFormBuilder(<a href="../../../../com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a> layout,
<a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/JPanel.html?is-external=true" title="class or interface in javax.swing">JPanel</a> panel)</pre>
<div class="block">Constructs an AbstractFormBuilder
for the given FormLayout and layout container.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>layout</code> - the FormLayout to use</dd><dd><code>panel</code> - the layout container</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang">NullPointerException</a></code> - if <code>layout</code> or <code>container</code> is <code>null</code></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="isLeftToRight()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isLeftToRight</h4>
<pre>public final boolean isLeftToRight()</pre>
<div class="block">Returns whether this builder fills the form left-to-right
or right-to-left. The initial value of this property is set
during the builder construction from the layout container's
<code>componentOrientation</code> property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true indicates left-to-right, false indicates right-to-left</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#setLeftToRight(boolean)"><code>setLeftToRight(boolean)</code></a>,
<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/ComponentOrientation.html?is-external=true" title="class or interface in java.awt"><code>ComponentOrientation</code></a></dd></dl>
</li>
</ul>
<a name="setLeftToRight(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLeftToRight</h4>
<pre>public final void setLeftToRight(boolean b)</pre>
<div class="block">Sets the form fill direction to left-to-right or right-to-left.
The initial value of this property is set during the builder construction
from the layout container's <code>componentOrientation</code> property.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>b</code> - true indicates left-to-right, false right-to-left</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#isLeftToRight()"><code>isLeftToRight()</code></a>,
<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/ComponentOrientation.html?is-external=true" title="class or interface in java.awt"><code>ComponentOrientation</code></a></dd></dl>
</li>
</ul>
<a name="getColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getColumn</h4>
<pre>public final int getColumn()</pre>
<div class="block">Returns the cursor's column.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the cursor's column</dd></dl>
</li>
</ul>
<a name="setColumn(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setColumn</h4>
<pre>public final void setColumn(int column)</pre>
<div class="block">Sets the cursor to the given column.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>column</code> - the cursor's new column index</dd></dl>
</li>
</ul>
<a name="getRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRow</h4>
<pre>public final int getRow()</pre>
<div class="block">Returns the cursor's row.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the cursor's row</dd></dl>
</li>
</ul>
<a name="setRow(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRow</h4>
<pre>public final void setRow(int row)</pre>
<div class="block">Sets the cursor to the given row.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>row</code> - the cursor's new row index</dd></dl>
</li>
</ul>
<a name="setColumnSpan(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setColumnSpan</h4>
<pre>public final void setColumnSpan(int columnSpan)</pre>
<div class="block">Sets the cursor's column span.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columnSpan</code> - the cursor's new column span (grid width)</dd></dl>
</li>
</ul>
<a name="setRowSpan(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRowSpan</h4>
<pre>public final void setRowSpan(int rowSpan)</pre>
<div class="block">Sets the cursor's row span.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>rowSpan</code> - the cursor's new row span (grid height)</dd></dl>
</li>
</ul>
<a name="setOrigin(int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOrigin</h4>
<pre>public final void setOrigin(int column,
int row)</pre>
<div class="block">Sets the cursor's origin to the given column and row.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>column</code> - the new column index</dd><dd><code>row</code> - the new row index</dd></dl>
</li>
</ul>
<a name="setExtent(int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExtent</h4>
<pre>public final void setExtent(int columnSpan,
int rowSpan)</pre>
<div class="block">Sets the cursor's extent to the given column span and row span.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columnSpan</code> - the new column span (grid width)</dd><dd><code>rowSpan</code> - the new row span (grid height)</dd></dl>
</li>
</ul>
<a name="setBounds(int, int, int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBounds</h4>
<pre>public final void setBounds(int column,
int row,
int columnSpan,
int rowSpan)</pre>
<div class="block">Sets the cell bounds (location and extent) to the given column, row,
column span and row span.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>column</code> - the new column index (grid x)</dd><dd><code>row</code> - the new row index (grid y)</dd><dd><code>columnSpan</code> - the new column span (grid width)</dd><dd><code>rowSpan</code> - the new row span (grid height)</dd></dl>
</li>
</ul>
<a name="setHAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHAlignment</h4>
<pre>public final void setHAlignment(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> alignment)</pre>
<div class="block">Sets the horizontal alignment.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>alignment</code> - the new horizontal alignment</dd></dl>
</li>
</ul>
<a name="setVAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setVAlignment</h4>
<pre>public final void setVAlignment(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> alignment)</pre>
<div class="block">Sets the vertical alignment.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>alignment</code> - the new vertical alignment</dd></dl>
</li>
</ul>
<a name="setAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment, com.jgoodies.forms.layout.CellConstraints.Alignment)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAlignment</h4>
<pre>public final void setAlignment(<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> hAlign,
<a href="../../../../com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a> vAlign)</pre>
<div class="block">Sets the horizontal and vertical alignment.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>hAlign</code> - the new horizontal alignment</dd><dd><code>vAlign</code> - the new vertical alignment</dd></dl>
</li>
</ul>
<a name="nextColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextColumn</h4>
<pre>public final void nextColumn()</pre>
<div class="block">Moves to the next column, does the same as #nextColumn(1).</div>
</li>
</ul>
<a name="nextColumn(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextColumn</h4>
<pre>public final void nextColumn(int columns)</pre>
<div class="block">Moves to the next column.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columns</code> - number of columns to move</dd></dl>
</li>
</ul>
<a name="nextRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextRow</h4>
<pre>public final void nextRow()</pre>
<div class="block">Increases the row by one; does the same as #nextRow(1).</div>
</li>
</ul>
<a name="nextRow(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextRow</h4>
<pre>public final void nextRow(int rows)</pre>
<div class="block">Increases the row by the specified rows.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>rows</code> - number of rows to move</dd></dl>
</li>
</ul>
<a name="nextLine()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextLine</h4>
<pre>public final void nextLine()</pre>
<div class="block">Moves to the next line: increases the row and resets the column;
does the same as #nextLine(1).</div>
</li>
</ul>
<a name="nextLine(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextLine</h4>
<pre>public final void nextLine(int lines)</pre>
<div class="block">Moves the cursor down several lines: increases the row by the
specified number of lines and sets the cursor to the leading column.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>lines</code> - number of rows to move</dd></dl>
</li>
</ul>
<a name="appendColumn(com.jgoodies.forms.layout.ColumnSpec)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendColumn</h4>
<pre>public final void appendColumn(<a href="../../../../com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a> columnSpec)</pre>
<div class="block">Appends the given column specification to the builder's layout.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columnSpec</code> - the column specification object to append</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(java.lang.String)"><code>appendColumn(String)</code></a></dd></dl>
</li>
</ul>
<a name="appendColumn(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendColumn</h4>
<pre>public final void appendColumn(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedColumnSpec)</pre>
<div class="block">Appends a column specification to the builder's layout
that represents the given string encoding.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>encodedColumnSpec</code> - the column specification to append in encoded form</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(com.jgoodies.forms.layout.ColumnSpec)"><code>appendColumn(ColumnSpec)</code></a></dd></dl>
</li>
</ul>
<a name="appendGlueColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendGlueColumn</h4>
<pre>public final void appendGlueColumn()</pre>
<div class="block">Appends a glue column.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendLabelComponentsGapColumn()"><code>appendLabelComponentsGapColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapColumn()"><code>appendRelatedComponentsGapColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapColumn()"><code>appendUnrelatedComponentsGapColumn()</code></a></dd></dl>
</li>
</ul>
<a name="appendLabelComponentsGapColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendLabelComponentsGapColumn</h4>
<pre>public final void appendLabelComponentsGapColumn()</pre>
<div class="block">Appends a column that is the default gap between a label and
its associated component.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>1.0.3</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueColumn()"><code>appendGlueColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapColumn()"><code>appendRelatedComponentsGapColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapColumn()"><code>appendUnrelatedComponentsGapColumn()</code></a></dd></dl>
</li>
</ul>
<a name="appendRelatedComponentsGapColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendRelatedComponentsGapColumn</h4>
<pre>public final void appendRelatedComponentsGapColumn()</pre>
<div class="block">Appends a column that is the default gap for related components.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueColumn()"><code>appendGlueColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendLabelComponentsGapColumn()"><code>appendLabelComponentsGapColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapColumn()"><code>appendUnrelatedComponentsGapColumn()</code></a></dd></dl>
</li>
</ul>
<a name="appendUnrelatedComponentsGapColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendUnrelatedComponentsGapColumn</h4>
<pre>public final void appendUnrelatedComponentsGapColumn()</pre>
<div class="block">Appends a column that is the default gap for unrelated components.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueColumn()"><code>appendGlueColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendLabelComponentsGapColumn()"><code>appendLabelComponentsGapColumn()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapColumn()"><code>appendRelatedComponentsGapColumn()</code></a></dd></dl>
</li>
</ul>
<a name="appendRow(com.jgoodies.forms.layout.RowSpec)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendRow</h4>
<pre>public final void appendRow(<a href="../../../../com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a> rowSpec)</pre>
<div class="block">Appends the given row specification to the builder's layout.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>rowSpec</code> - the row specification object to append</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(java.lang.String)"><code>appendRow(String)</code></a></dd></dl>
</li>
</ul>
<a name="appendRow(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendRow</h4>
<pre>public final void appendRow(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedRowSpec)</pre>
<div class="block">Appends a row specification to the builder's layout that represents
the given string encoding.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>encodedRowSpec</code> - the row specification to append in encoded form</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(com.jgoodies.forms.layout.RowSpec)"><code>appendRow(RowSpec)</code></a></dd></dl>
</li>
</ul>
<a name="appendGlueRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendGlueRow</h4>
<pre>public final void appendGlueRow()</pre>
<div class="block">Appends a glue row.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapRow()"><code>appendRelatedComponentsGapRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapRow()"><code>appendUnrelatedComponentsGapRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendParagraphGapRow()"><code>appendParagraphGapRow()</code></a></dd></dl>
</li>
</ul>
<a name="appendRelatedComponentsGapRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendRelatedComponentsGapRow</h4>
<pre>public final void appendRelatedComponentsGapRow()</pre>
<div class="block">Appends a row that is the default gap for related components.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueRow()"><code>appendGlueRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapRow()"><code>appendUnrelatedComponentsGapRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendParagraphGapRow()"><code>appendParagraphGapRow()</code></a></dd></dl>
</li>
</ul>
<a name="appendUnrelatedComponentsGapRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendUnrelatedComponentsGapRow</h4>
<pre>public final void appendUnrelatedComponentsGapRow()</pre>
<div class="block">Appends a row that is the default gap for unrelated components.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueRow()"><code>appendGlueRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapRow()"><code>appendRelatedComponentsGapRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendParagraphGapRow()"><code>appendParagraphGapRow()</code></a></dd></dl>
</li>
</ul>
<a name="appendParagraphGapRow()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>appendParagraphGapRow</h4>
<pre>public final void appendParagraphGapRow()</pre>
<div class="block">Appends a row that is the default gap for paragraphs.</div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>1.0.3</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueRow()"><code>appendGlueRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapRow()"><code>appendRelatedComponentsGapRow()</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapRow()"><code>appendUnrelatedComponentsGapRow()</code></a></dd></dl>
</li>
</ul>
<a name="add(java.awt.Component, com.jgoodies.forms.layout.CellConstraints)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public <a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> add(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component,
<a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a> cellConstraints)</pre>
<div class="block">Adds a component to the panel using the given cell constraints.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - the component to add</dd><dd><code>cellConstraints</code> - the component's cell constraints</dd>
<dt><span class="strong">Returns:</span></dt><dd>the added component</dd></dl>
</li>
</ul>
<a name="add(java.awt.Component, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public final <a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> add(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> encodedCellConstraints)</pre>
<div class="block">Adds a component to the panel using the given encoded cell constraints.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - the component to add</dd><dd><code>encodedCellConstraints</code> - the component's encoded cell constraints</dd>
<dt><span class="strong">Returns:</span></dt><dd>the added component</dd></dl>
</li>
</ul>
<a name="add(java.awt.Component)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre>public final <a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> add(<a href="http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html?is-external=true" title="class or interface in java.awt">Component</a> component)</pre>
<div class="block">Adds a component to the container using the default cell constraints.
Note that when building from left to right, this method won't adjust
the cell constraints if the column span is larger than 1. In this case
you should use <a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)"><code>add(Component, CellConstraints)</code></a> with a cell
constraints object created by <a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#createLeftAdjustedConstraints(int)"><code>createLeftAdjustedConstraints(int)</code></a>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>component</code> - the component to add</dd>
<dt><span class="strong">Returns:</span></dt><dd>the added component</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)"><code>add(Component, CellConstraints)</code></a>,
<a href="../../../../com/jgoodies/forms/internal/AbstractFormBuilder.html#createLeftAdjustedConstraints(int)"><code>createLeftAdjustedConstraints(int)</code></a></dd></dl>
</li>
</ul>
<a name="cellConstraints()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cellConstraints</h4>
<pre>protected final <a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a> cellConstraints()</pre>
<div class="block">Returns the CellConstraints object that is used as a cursor and
holds the current column span and row span.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the builder's current <a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout"><code>CellConstraints</code></a> object</dd></dl>
</li>
</ul>
<a name="getLeadingColumn()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLeadingColumn</h4>
<pre>protected int getLeadingColumn()</pre>
<div class="block">Returns the index of the leading column.<p>
Subclasses may override this method, for example, if the form
has a leading gap column that should not be filled with components.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the leading column</dd></dl>
</li>
</ul>
<a name="getColumnIncrementSign()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getColumnIncrementSign</h4>
<pre>protected final int getColumnIncrementSign()</pre>
<div class="block">Returns the sign (-1 or 1) used to increment the cursor's column
when moving to the next column.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>-1 for right-to-left, 1 for left-to-right</dd></dl>
</li>
</ul>
<a name="createLeftAdjustedConstraints(int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>createLeftAdjustedConstraints</h4>
<pre>protected final <a href="../../../../com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a> createLeftAdjustedConstraints(int columnSpan)</pre>
<div class="block">Creates and returns a <code>CellConstraints</code> object at
the current cursor position that uses the given column span
and is adjusted to the left. Useful when building from right to left.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columnSpan</code> - the column span to be used in the constraints</dd>
<dt><span class="strong">Returns:</span></dt><dd>CellConstraints adjusted to the left hand side</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="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AbstractFormBuilder.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-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../com/jgoodies/forms/internal/FocusTraversalUtilsAccessor.html" title="class in com.jgoodies.forms.internal"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/jgoodies/forms/internal/AbstractFormBuilder.html" target="_top">Frames</a></li>
<li><a href="AbstractFormBuilder.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: </li>
<li>Nested | </li>
<li><a href="#fields_inherited_from_class_com.jgoodies.forms.internal.AbstractBuilder">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2002-2015 JGoodies Software GmbH. All Rights Reserved. </small></p>
</body>
</html>
|