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 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869
|
<!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:22 CET 2015 -->
<title>Index (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="Index (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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="./overview-tree.html">Tree</a></li>
<li><a href="./deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="./help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="./allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#_A_">A</a> <a href="#_B_">B</a> <a href="#_C_">C</a> <a href="#_D_">D</a> <a href="#_E_">E</a> <a href="#_F_">F</a> <a href="#_G_">G</a> <a href="#_H_">H</a> <a href="#_I_">I</a> <a href="#_L_">L</a> <a href="#_M_">M</a> <a href="#_N_">N</a> <a href="#_O_">O</a> <a href="#_P_">P</a> <a href="#_R_">R</a> <a href="#_S_">S</a> <a href="#_T_">T</a> <a href="#_U_">U</a> <a href="#_V_">V</a> <a href="#_X_">X</a> <a href="#_Z_">Z</a> <a name="_A_">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.Alignment.html#abbreviation()">abbreviation()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a></dt>
<dd>
<div class="block">Returns the first character of this Alignment's name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html#abbreviation()">abbreviation()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html" title="class in com.jgoodies.forms.layout">ConstantSize.Unit</a></dt>
<dd>
<div class="block">Returns the first character of this Unit's name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.DefaultAlignment.html#abbreviation()">abbreviation()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.DefaultAlignment.html" title="class in com.jgoodies.forms.layout">FormSpec.DefaultAlignment</a></dt>
<dd>
<div class="block">Returns the first character of this Alignment's name.</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal"><span class="strong">AbstractBuilder</span></a><<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="type parameter in AbstractBuilder">B</a> extends <a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a><<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="type parameter in AbstractBuilder">B</a>>> - Class in <a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a></dt>
<dd>
<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>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#AbstractBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">AbstractBuilder(FormLayout, JPanel)</a></span> - Constructor for class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Constructs an AbstractBuilder for the given layout and panel.</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal"><span class="strong">AbstractButtonPanelBuilder</span></a><<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="type parameter in AbstractButtonPanelBuilder">B</a> extends <a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a><<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="type parameter in AbstractButtonPanelBuilder">B</a>>> - Class in <a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a></dt>
<dd>
<div class="block">The abstract superclass for <a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder"><code>ButtonBarBuilder</code></a> and
<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder"><code>ButtonStackBuilder</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#AbstractButtonPanelBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">AbstractButtonPanelBuilder(FormLayout, JPanel)</a></span> - Constructor for class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Constructs an AbstractButtonPanelBuilder
for the given FormLayout and layout container.</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal"><span class="strong">AbstractFormBuilder</span></a><<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="type parameter in AbstractFormBuilder">B</a> extends <a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a><<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="type parameter in AbstractFormBuilder">B</a>>> - Class in <a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a></dt>
<dd>
<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>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#AbstractFormBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">AbstractFormBuilder(FormLayout, JPanel)</a></span> - Constructor for class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Constructs an AbstractFormBuilder
for the given FormLayout and layout container.</div>
</dd>
<dt><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util"><span class="strong">AbstractUnitConverter</span></a> - Class in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">An abstract implementation of the <a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util"><code>UnitConverter</code></a> interface that
minimizes the effort required to convert font-dependent sizes to pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#AbstractUnitConverter()">AbstractUnitConverter()</a></span> - Constructor for class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(java.awt.Component)">add(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a component to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(com.jgoodies.forms.builder.FormBuilder.FormBuildingView)">add(FormBuilder.FormBuildingView)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Builds the given view into this FormBuilder's form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(java.lang.String,%20java.lang.Object...)">add(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a textual label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(javax.swing.Icon)">add(Icon)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding an icon label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(boolean,%20java.awt.Component)">add(boolean, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a component to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(boolean,%20com.jgoodies.forms.builder.FormBuilder.FormBuildingView)">add(boolean, FormBuilder.FormBuildingView)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Builds the given view into this FormBuilder's form,
if <code>expression</code> is <code>true</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(boolean,%20java.lang.String,%20java.lang.Object...)">add(boolean, String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a textual label
to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#add(boolean,%20javax.swing.Icon)">add(boolean, Icon)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding an icon label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#add(com.jgoodies.forms.layout.CellConstraints)">add(CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#add(javax.swing.JLabel,%20com.jgoodies.forms.layout.CellConstraints,%20java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">add(JLabel, CellConstraints, Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a label and component to the panel using the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#add(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">add(Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a component to the panel using the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#add(java.awt.Component)">add(Component)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Adds a component to the container using the default cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">add(Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Adds a component to the panel using the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component,%20java.lang.String)">add(Component, String)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Adds a component to the panel using the given encoded cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#add(java.awt.Component)">add(Component)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Adds a component to the container using the default cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(javax.swing.JButton...)">addBar(JButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a button bar to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(javax.swing.JCheckBox...)">addBar(JCheckBox...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a check box bar to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(javax.swing.JRadioButton...)">addBar(JRadioButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a radio button bar to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(boolean,%20javax.swing.JButton...)">addBar(boolean, JButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a button bar to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(boolean,%20javax.swing.JCheckBox...)">addBar(boolean, JCheckBox...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a check box bar to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addBar(boolean,%20javax.swing.JRadioButton...)">addBar(boolean, JRadioButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a radio button bar
to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addButton(javax.swing.JComponent)">addButton(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds a button component that has a minimum width
specified by the <a href="./com/jgoodies/forms/util/LayoutStyle.html#getDefaultButtonWidth()"><code>LayoutStyle.getDefaultButtonWidth()</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addButton(javax.swing.JComponent...)">addButton(JComponent...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addButton(javax.swing.Action...)">addButton(Action...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addButton(javax.swing.JComponent)">addButton(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Adds a button component that has a minimum width
specified by the <a href="./com/jgoodies/forms/util/LayoutStyle.html#getDefaultButtonWidth()"><code>LayoutStyle.getDefaultButtonWidth()</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addButton(javax.swing.JComponent...)">addButton(JComponent...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addButton(javax.swing.Action...)">addButton(Action...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#addButton(javax.swing.JComponent)">addButton(JComponent)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#addButton(javax.swing.JComponent...)">addButton(JComponent...)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Adds one or many sequences of related buttons.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#addButton(javax.swing.Action...)">addButton(Action...)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Constructs an array of JButtons from the given Action array,
and adds them as a sequence of related buttons separated by a default gap.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addFixed(javax.swing.JComponent)">addFixed(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds a fixed size component with narrow margin.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addFixed(javax.swing.JComponent)">addFixed(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Adds a fixed size component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addGlue()">addGlue()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds a glue that will be given the extra space,
if this button bar is larger than its preferred size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addGlue()">addGlue()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Adds a glue that will be given the extra space,
if this box is larger than its preferred size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#addGroupedColumn(int)">addGroupedColumn(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Adds the specified column index to the last column group.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#addGroupedRow(int)">addGroupedRow(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Adds the specified row index to the last row group.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addGrowing(javax.swing.JComponent)">addGrowing(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds a component that grows if the container grows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addI15dLabel(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) textual label to the form using the
specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dLabel(java.lang.String,%20java.lang.String)">addI15dLabel(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) textual label to the form using the
specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints,%20java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">addI15dLabel(String, CellConstraints, Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) label and component to the panel using
the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dROLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addI15dROLabel(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) textual label to the form using the
specified constraints that is intended to label a read-only component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dROLabel(java.lang.String,%20java.lang.String)">addI15dROLabel(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) textual label to the form using the
specified constraints that is intended to label a read-only component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dROLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints,%20java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">addI15dROLabel(String, CellConstraints, Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) label and component to the panel using
the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dSeparator(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addI15dSeparator(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) titled separator to the form using the
specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dSeparator(java.lang.String,%20java.lang.String)">addI15dSeparator(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) titled separator to the form using
the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dTitle(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addI15dTitle(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#addI15dTitle(java.lang.String,%20java.lang.String)">addI15dTitle(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addImpl(java.awt.Component)">addImpl(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addLabel(java.lang.String,%20java.lang.Object...)">addLabel(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a plain label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addLabel(boolean,%20java.lang.String,%20java.lang.Object...)">addLabel(boolean, String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a plain label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addLabel(java.lang.String)">addLabel(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label to the form using the default constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addLabel(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addLabel(java.lang.String,%20java.lang.String)">addLabel(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints,%20java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">addLabel(String, CellConstraints, Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a label and component to the panel using the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#addLayoutComponent(java.lang.String,%20java.awt.Component)">addLayoutComponent(String, Component)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Throws an <code>UnsupportedOperationException</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#addLayoutComponent(java.awt.Component,%20java.lang.Object)">addLayoutComponent(Component, Object)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Adds the specified component to the layout, using the specified
<code>constraints</code> object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addRaw(java.awt.Component)">addRaw(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a component to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addRaw(boolean,%20java.awt.Component)">addRaw(boolean, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a component to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addRelatedGap()">addRelatedGap()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds the standard horizontal gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addRelatedGap()">addRelatedGap()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#addRelatedGap()">addRelatedGap()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Adds the standard gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addROLabel(java.lang.String,%20java.lang.Object...)">addROLabel(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a textual label to the form
that is intended for labeling read-only components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addROLabel(boolean,%20java.lang.String,%20java.lang.Object...)">addROLabel(boolean, String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a textual label to the form
that is intended for labeling read-only components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addROLabel(java.lang.String)">addROLabel(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label intended for labeling read-only components
to the form using the default constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addROLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addROLabel(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label intended for labeling read-only components
to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addROLabel(java.lang.String,%20java.lang.String)">addROLabel(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a textual label intended for labeling read-only components
to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addROLabel(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints,%20java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">addROLabel(String, CellConstraints, Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a label and component to the panel using the given cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addScrolled(java.awt.Component)">addScrolled(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding the given component wrapped
with a JScrollPane to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addScrolled(boolean,%20java.awt.Component)">addScrolled(boolean, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding the given component
wrapped with a JScrollPane to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addSeparator(java.lang.String,%20java.lang.Object...)">addSeparator(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a titled separator to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addSeparator(boolean,%20java.lang.String,%20java.lang.Object...)">addSeparator(boolean, String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a titled separator to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addSeparator(java.lang.String)">addSeparator(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a titled separator to the form that spans all columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addSeparator(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addSeparator(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a titled separator to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addSeparator(java.lang.String,%20java.lang.String)">addSeparator(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a titled separator to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addSeparator(java.lang.String,%20int)">addSeparator(String, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a titled separator to the form that spans the specified columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(javax.swing.JButton...)">addStack(JButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a button stack to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(javax.swing.JCheckBox...)">addStack(JCheckBox...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a check box stack to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(javax.swing.JRadioButton...)">addStack(JRadioButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a radio button stack to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(boolean,%20javax.swing.JButton...)">addStack(boolean, JButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a button stack
to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(boolean,%20javax.swing.JCheckBox...)">addStack(boolean, JCheckBox...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a check box stack
to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addStack(boolean,%20javax.swing.JRadioButton...)">addStack(boolean, JRadioButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a radio button stack
to this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addStrut(com.jgoodies.forms.layout.ConstantSize)">addStrut(ConstantSize)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds a horizontal strut of the specified width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addStrut(com.jgoodies.forms.layout.ConstantSize)">addStrut(ConstantSize)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Adds a strut of a specified size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addTitle(java.lang.String,%20java.lang.Object...)">addTitle(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for adding a title label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#addTitle(boolean,%20java.lang.String,%20java.lang.Object...)">addTitle(boolean, String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">The first of two steps for conditionally adding a title label to the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addTitle(java.lang.String)">addTitle(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title label to the form using the default constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addTitle(java.lang.String,%20com.jgoodies.forms.layout.CellConstraints)">addTitle(String, CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title label to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#addTitle(java.lang.String,%20java.lang.String)">addTitle(String, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title label to the form using the specified constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#addUnrelatedGap()">addUnrelatedGap()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Adds the standard horizontal gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#addUnrelatedGap()">addUnrelatedGap()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#addUnrelatedGap()">addUnrelatedGap()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Adds the standard gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.awt.Component)">append(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a component to the panel using the default constraints
with a column span of 1.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.awt.Component,%20int)">append(Component, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a component to the panel using the default constraints with
the given columnSpan.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.awt.Component,%20java.awt.Component)">append(Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds two components to the panel; each component will span a single
data column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.awt.Component,%20java.awt.Component,%20java.awt.Component)">append(Component, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds three components to the panel; each component will span a single
data column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String)">append(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label to the panel and proceeds to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component)">append(String, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and component to the panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20boolean)">append(String, Component, boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and component to the panel; the component will span
the specified number columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20int)">append(String, Component, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and component to the panel; the component will span
the specified number columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20java.awt.Component)">append(String, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and two components to the panel; each component
will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20int)">append(String, Component, Component, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and two components to the panel; each component
will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component)">append(String, Component, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and three components to the panel; each component
will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#append(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component)">append(String, Component, Component, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a text label and four components to the panel; each component
will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendColumn(com.jgoodies.forms.layout.ColumnSpec)">appendColumn(ColumnSpec)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends the given column specification to the builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(com.jgoodies.forms.layout.ColumnSpec)">appendColumn(ColumnSpec)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends the given column specification to the builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendColumn(java.lang.String)">appendColumn(String)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a column specification to the builder's layout
that represents the given string encoding.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#appendColumn(com.jgoodies.forms.layout.ColumnSpec)">appendColumn(ColumnSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Appends the given column specification to the right hand side of all
columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#appendColumns(java.lang.String,%20java.lang.Object...)">appendColumns(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Appends the given columns to this builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendGlueColumn()">appendGlueColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a glue column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueColumn()">appendGlueColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a glue column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendGlueRow()">appendGlueRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a glue row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendGlueRow()">appendGlueRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a glue row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String)">appendI15d(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label to the panel using
the given resource key and proceeds to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component)">appendI15d(String, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and component
to the panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20boolean)">appendI15d(String, Component, boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and component
to the panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20int)">appendI15d(String, Component, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label to the panel using
the given resource key; then proceeds to the next data column
and adds a component with the given column span.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20java.awt.Component)">appendI15d(String, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and two components
to the panel; each component will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20int)">appendI15d(String, Component, Component, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and two components
to the panel; each component will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component)">appendI15d(String, Component, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and three components
to the panel; each component will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15d(java.lang.String,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component,%20java.awt.Component)">appendI15d(String, Component, Component, Component, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized (i15d) text label and four components
to the panel; each component will span a single column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15dSeparator(java.lang.String)">appendI15dSeparator(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Appends an internationalized titled separator for
the given resource key that spans all columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendI15dTitle(java.lang.String)">appendI15dTitle(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds an internationalized title label to the panel and
proceeds to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendLabelComponentsGapColumn()">appendLabelComponentsGapColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a column that is the default gap between a label and
its associated component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendLineGapRow()">appendLineGapRow()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Appends a row with this builder's line gap size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendParagraphGapRow()">appendParagraphGapRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a row that is the default gap for paragraphs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendRelatedComponentsGapColumn()">appendRelatedComponentsGapColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a column that is the default gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapColumn()">appendRelatedComponentsGapColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a column that is the default gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendRelatedComponentsGapRow()">appendRelatedComponentsGapRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a row that is the default gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRelatedComponentsGapRow()">appendRelatedComponentsGapRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a row that is the default gap for related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendRow(com.jgoodies.forms.layout.RowSpec)">appendRow(RowSpec)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends the given row specification to the builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(com.jgoodies.forms.layout.RowSpec)">appendRow(RowSpec)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends the given row specification to the builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendRow(java.lang.String)">appendRow(String)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a row specification to the builder's layout that represents
the given string encoding.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#appendRow(com.jgoodies.forms.layout.RowSpec)">appendRow(RowSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Appends the given row specification to the bottom of all rows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#appendRows(java.lang.String,%20java.lang.Object...)">appendRows(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Appends the given rows to this builder's layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendSeparator()">appendSeparator()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a separator without text that spans all columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendSeparator(java.lang.String)">appendSeparator(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a separator with the given text that spans all columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#appendTitle(java.lang.String)">appendTitle(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Adds a title label to the panel and proceeds to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendUnrelatedComponentsGapColumn()">appendUnrelatedComponentsGapColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a column that is the default gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapColumn()">appendUnrelatedComponentsGapColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a column that is the default gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#appendUnrelatedComponentsGapRow()">appendUnrelatedComponentsGapRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Appends a row that is the default gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#appendUnrelatedComponentsGapRow()">appendUnrelatedComponentsGapRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Appends a row that is the default gap for unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#at(com.jgoodies.forms.layout.CellConstraints)">at(CellConstraints)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the given cell constraints.</div>
</dd>
</dl>
<a name="_B_">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#background(java.awt.Color)">background(Color)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#background(java.awt.Color)">background(Color)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's background color and the panel to be opaque.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#background(java.awt.Color)">background(Color)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#background(java.awt.Color)">background(Color)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets the panel's background color and makes the panel opaque.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#BALANCED_AVERAGE_CHARACTER_TEST_STRING">BALANCED_AVERAGE_CHARACTER_TEST_STRING</a></span> - Static variable in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#border(javax.swing.border.Border)">border(Border)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#border(java.lang.String)">border(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#border(javax.swing.border.Border)">border(Border)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's border.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#border(java.lang.String)">border(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Use <a href="./com/jgoodies/forms/builder/FormBuilder.html#padding(java.lang.String,%20java.lang.Object...)"><code>FormBuilder.padding(String, Object...)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#border(javax.swing.border.Border)">border(Border)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#border(java.lang.String)">border(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#border(javax.swing.border.Border)">border(Border)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional border that surrounds the list view including
the label and details.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#border(javax.swing.border.Border,%20javax.swing.JComponent)">border(Border, JComponent)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where <code>component</code> is surrounded
by the given border.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#border(java.lang.String,%20javax.swing.JComponent)">border(String, JComponent)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Use <a href="./com/jgoodies/forms/factories/Forms.html#padding(javax.swing.JComponent,%20java.lang.String,%20java.lang.Object...)"><code>Forms.padding(JComponent,String, Object...)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#border(javax.swing.border.Border)">border(Border)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets the panel's border.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#border(java.lang.String)">border(String)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/internal/AbstractBuilder.html#padding(java.lang.String,%20java.lang.Object...)"><code>AbstractBuilder.padding(String, Object...)</code></a></i></div>
</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories"><span class="strong">Borders</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories"><code>Paddings</code></a>.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#BOTTOM">BOTTOM</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#BOTTOM">BOTTOM</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Put the component in the bottom.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#BOTTOM">BOTTOM</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">By default put the components in the bottom.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#bounded(com.jgoodies.forms.layout.Size,%20com.jgoodies.forms.layout.Size,%20com.jgoodies.forms.layout.Size)">bounded(Size, Size, Size)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Creates and returns a BoundedSize for the given basis
using the specified lower and upper bounds.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout"><span class="strong">BoundedSize</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Describes sizes that provide lower and upper bounds
as used by the JGoodies FormLayout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#BoundedSize(com.jgoodies.forms.layout.Size,%20com.jgoodies.forms.layout.Size,%20com.jgoodies.forms.layout.Size)">BoundedSize(Size, Size, Size)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Constructs a BoundedSize for the given basis using the
specified lower and upper bounds.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#build()">build()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Returns the panel used to build the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#build()">build()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Lazily builds and returns the list view panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#build()">build()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Returns the panel used to build the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#build()">build()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#build()">build()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Returns the panel used to build the form and lazily builds
a focus traversal group for all contained AbstractButtons.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#builder">builder</a></span> - Variable in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.FormBuildingView.html#buildInto(com.jgoodies.forms.builder.FormBuilder)">buildInto(FormBuilder)</a></span> - Method in interface com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.FormBuildingView.html" title="interface in com.jgoodies.forms.builder">FormBuilder.FormBuildingView</a></dt>
<dd>
<div class="block">Integrates this view into the form that is built by the given builder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#BUTTON_BAR_PAD">BUTTON_BAR_PAD</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A standardized Border that describes the gap between a component
and a button bar in its bottom.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#BUTTON_BAR_PAD">BUTTON_BAR_PAD</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A standardized reusable padding intended for the gap
between a component and a button bar in its bottom.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#BUTTON_COLSPEC">BUTTON_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal column for a fixed size button.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#BUTTON_ROWSPEC">BUTTON_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical row for a fixed size button.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#buttonBar(javax.swing.JComponent...)">buttonBar(JComponent...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where the given buttons
are laid out horizontally using a ButtonBarBuilder.</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">ButtonBarBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block">Builds consistent button bars that comply with popular style guides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#ButtonBarBuilder()">ButtonBarBuilder()</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Constructs an empty ButtonBarBuilder on a JPanel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#ButtonBarBuilder(javax.swing.JPanel)">ButtonBarBuilder(JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd>
<div class="block">Constructs an empty ButtonBarBuilder on the given panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#buttonStack(javax.swing.JComponent...)">buttonStack(JComponent...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where the given buttons
are laid out vertically using a ButtonStackBuilder.</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">ButtonStackBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block">Builds consistent button stacks that comply with popular style guides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#ButtonStackBuilder()">ButtonStackBuilder()</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Constructs a ButtonStackBuilder on a default JPanel
using a pre-configured FormLayout as layout manager.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#ButtonStackBuilder(javax.swing.JPanel)">ButtonStackBuilder(JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Constructs a ButtonStackBuilder on the given panel
using a pre-configured FormLayout as layout manager.</div>
</dd>
</dl>
<a name="_C_">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories"><span class="strong">CC</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">A factory for CellConstraints objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#CC()">CC()</a></span> - Constructor for class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#cellConstraints()">cellConstraints()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns the CellConstraints object that is used as a cursor and
holds the current column span and row span.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout"><span class="strong">CellConstraints</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Defines constraints for components that are laid out with the FormLayout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints()">CellConstraints()</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs a default instance of <code>CellConstraints</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(int,%20int)">CellConstraints(int, int)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> for the given
cell position.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">CellConstraints(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> for the given
cell position, anchor, and fill.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(int,%20int,%20int,%20int)">CellConstraints(int, int, int, int)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> for the given
cell position and size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">CellConstraints(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> for the given
cell position and size, anchor, and fill.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20java.awt.Insets)">CellConstraints(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment, Insets)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> for
the complete set of available properties.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CellConstraints(java.lang.String)">CellConstraints(String)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs an instance of <code>CellConstraints</code> from
the given encoded string properties.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout"><span class="strong">CellConstraints.Alignment</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An ordinal-based serializable typesafe enumeration for component
alignment types as used by the <a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#CENTER">CENTER</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#CENTER">CENTER</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Put the component in the center.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#CENTER">CENTER</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">By default put the components in the center.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#CENTER">CENTER</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">By default put the components in the center.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#centered(javax.swing.JComponent)">centered(JComponent)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where <code>component</code> is centered.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#CENTIMETER">CENTIMETER</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#centimeterAsPixel(double,%20java.awt.Component)">centimeterAsPixel(double, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts Centimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#centimeterAsPixel(double,%20java.awt.Component)">centimeterAsPixel(double, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Centimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#centimeterAsPixel(double,%20int)">centimeterAsPixel(double, int)</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Centimeters and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#centimeterAsPixel(double,%20java.awt.Component)">centimeterAsPixel(double, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts Centimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#checkBoxBar(javax.swing.JCheckBox...)">checkBoxBar(JCheckBox...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given check boxes
are laid out horizontally.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#checkBoxStack(javax.swing.JCheckBox...)">checkBoxStack(JCheckBox...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given check boxes
are laid out vertically.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html#checkValidFocusTraversalSetup(java.awt.FocusTraversalPolicy,%20com.jgoodies.forms.util.FocusTraversalType,%20java.awt.Component)">checkValidFocusTraversalSetup(FocusTraversalPolicy, FocusTraversalType, Component)</a></span> - Static method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html" title="class in com.jgoodies.forms.internal">InternalFocusSetupUtils</a></dt>
<dd>
<div class="block">Checks that if the API user has set a focus traversal policy,
no focus traversal type and no initial component has been set.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/FormUtils.html#clearLookAndFeelBasedCaches()">clearLookAndFeelBasedCaches()</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/FormUtils.html" title="class in com.jgoodies.forms.util">FormUtils</a></dt>
<dd>
<div class="block">Clears cached internal Forms state that is based
on the Look&Feel, for example dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#clone()">clone()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Creates a copy of this cell constraints object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#CM">CM</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.html#columnContainsComponent(java.awt.Container,%20int)">columnContainsComponent(Container, int)</a></span> - Static method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils</a></dt>
<dd>
<div class="block">Checks and answers whether the given FormLayout container
contains a component in the specified column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnContainsKey(java.lang.String)">columnContainsKey(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Returns <code>true</code> if this map or a parent map - if any - contains
a mapping for the specified key.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnGet(java.lang.String)">columnGet(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Looks up and returns the String associated with the given key.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#columnGroup(int...)">columnGroup(int...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout to group (make equally wide)
the columns with the given indices.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#columnGroups(int[]...)">columnGroups(int[]...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout to group (make equally wide)
the columns per array of column indices.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#columnOrigins">columnOrigins</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Holds the origins of the columns.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnPut(java.lang.String,%20java.lang.String)">columnPut(String, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Associates the specified column String with the specified key
in this map.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnPut(java.lang.String,%20com.jgoodies.forms.layout.ColumnSpec)">columnPut(String, ColumnSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnPut(java.lang.String,%20com.jgoodies.forms.layout.Size)">columnPut(String, Size)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#columnRemove(java.lang.String)">columnRemove(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Removes the column value mapping for this key from this map if it is
present.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#columns(java.lang.String,%20java.lang.Object...)">columns(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout columns using a comma-separated
string of column specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout"><span class="strong">ColumnSpec</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Specifies columns in FormLayout by their default orientation,
start size and resizing behavior.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#ColumnSpec(com.jgoodies.forms.layout.FormSpec.DefaultAlignment,%20com.jgoodies.forms.layout.Size,%20double)">ColumnSpec(FormSpec.DefaultAlignment, Size, double)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Constructs a ColumnSpec for the given default alignment,
size and resize weight.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#ColumnSpec(com.jgoodies.forms.layout.Size)">ColumnSpec(Size)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Constructs a ColumnSpec for the given size using the
default alignment, and no resizing.</div>
</dd>
<dt><a href="./com/jgoodies/forms/package-summary.html">com.jgoodies.forms</a> - package com.jgoodies.forms</dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a> - package com.jgoodies.forms.builder</dt>
<dd>
<div class="block">Contains optional builder classes of the Forms framework.</div>
</dd>
<dt><a href="./com/jgoodies/forms/debug/package-summary.html">com.jgoodies.forms.debug</a> - package com.jgoodies.forms.debug</dt>
<dd>
<div class="block">Consists of optional classes that help you find,
understand and fix layout problems</div>
</dd>
<dt><a href="./com/jgoodies/forms/extras/package-summary.html">com.jgoodies.forms.extras</a> - package com.jgoodies.forms.extras</dt>
<dd>
<div class="block">Contains optional Forms framework classes that ship only with
the JGoodies Forms source distribution and are not yet part
of the binary Forms library.</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a> - package com.jgoodies.forms.factories</dt>
<dd>
<div class="block">Consists of optional Forms framework factory classes that assist you
in building consistent forms quickly</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a> - package com.jgoodies.forms.internal</dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a> - package com.jgoodies.forms.layout</dt>
<dd>
<div class="block">Contains the core classes of the JGoodies Forms framework:
layout manager, column and row specifications, sizes and cell constraints</div>
</dd>
<dt><a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a> - package com.jgoodies.forms.util</dt>
<dd>
<div class="block">Consists of Forms framework helper classes for unit conversion and layout styles</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories"><span class="strong">ComponentFactory</span></a> - Interface in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">An interface that defines the factory methods as used by the
<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder"><code>FormBuilder</code></a>, <a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder"><code>ListViewBuilder</code></a>, and other builders.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#compressible()">compressible()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Describes if this Size can be compressed, if container space gets scarce.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#compressible()">compressible()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Describes if this Size can be compressed, if container space gets scarce.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#compressible()">compressible()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Describes if this Size can be compressed, if container space gets scarce.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Size.html#compressible()">compressible()</a></span> - Method in interface com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout">Size</a></dt>
<dd>
<div class="block">Describes if this Size can be compressed, if container space gets scarce.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#computeAverageCharWidth(java.awt.FontMetrics,%20java.lang.String)">computeAverageCharWidth(FontMetrics, String)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Computes and returns the average character width
of the specified test string using the given FontMetrics.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#constant(java.lang.String,%20boolean)">constant(String, boolean)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Creates and returns an instance of <code>ConstantSize</code> from the
given encoded size and unit description.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><span class="strong">ConstantSize</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An implementation of the <a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout"><code>Size</code></a> interface that represents constant
sizes described by a value and unit, for example:
10 pixel, 15 point or 4 dialog units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#ConstantSize(int,%20com.jgoodies.forms.layout.ConstantSize.Unit)">ConstantSize(int, ConstantSize.Unit)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Constructs a ConstantSize for the given size and unit.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#ConstantSize(double,%20com.jgoodies.forms.layout.ConstantSize.Unit)">ConstantSize(double, ConstantSize.Unit)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Constructs a ConstantSize for the given size and unit.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html" title="class in com.jgoodies.forms.layout"><span class="strong">ConstantSize.Unit</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An ordinal-based serializable typesafe enumeration for units
as used in instances of <a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><code>ConstantSize</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html#create()">create()</a></span> - Static method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonBarBuilder.html" title="class in com.jgoodies.forms.builder">ButtonBarBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html#create()">create()</a></span> - Static method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ButtonStackBuilder.html" title="class in com.jgoodies.forms.builder">ButtonStackBuilder</a></dt>
<dd>
<div class="block">Creates and returns an empty ButtonStackBuilder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#create()">create()</a></span> - Static method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Creates and return a new FormBuilder instance.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#create()">create()</a></span> - Static method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Creates and returns a ListViewBuilder using the global default
component factory.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createButton(javax.swing.Action)">createButton(Action)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a button that is bound to the given Action.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createButton(javax.swing.Action)">createButton(Action)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a button that is bound to the given Action.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#createButton(javax.swing.Action)">createButton(Action)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Creates and returns a button that is bound to the given Action.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#createComponentFactory()">createComponentFactory()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Invoked when the per-instance component factory is lazily initialized.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#createEmptyBorder(com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize)">createEmptyBorder(ConstantSize, ConstantSize, ConstantSize, ConstantSize)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/factories/Paddings.html#createPadding(com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize)"><code>Paddings.createPadding(ConstantSize, ConstantSize, ConstantSize, ConstantSize)</code></a>.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#createEmptyBorder(java.lang.String)">createEmptyBorder(String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/factories/Paddings.html#createPadding(java.lang.String,%20java.lang.Object...)"><code>Paddings.createPadding(String, Object...)</code></a>.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#createGap(com.jgoodies.forms.layout.ConstantSize)">createGap(ConstantSize)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Creates and returns a <a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout"><code>ColumnSpec</code></a> that represents a gap with the
specified <a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><code>ConstantSize</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#createGap(com.jgoodies.forms.layout.ConstantSize)">createGap(ConstantSize)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Creates and returns a <a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout"><code>RowSpec</code></a> that represents a gap with the
specified <a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><code>ConstantSize</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createHeaderLabel(java.lang.String)">createHeaderLabel(String)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a label intended for pane headers that uses
a larger font than the control font and a special foreground color.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createHeaderLabel(java.lang.String)">createHeaderLabel(String)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createLabel(java.lang.String)">createLabel(String)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a label with an optional mnemonic.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createLabel(java.lang.String)">createLabel(String)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a label with an optional mnemonic.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#createLeftAdjustedConstraints(int)">createLeftAdjustedConstraints(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<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>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#createPadding(com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize,%20com.jgoodies.forms.layout.ConstantSize)">createPadding(ConstantSize, ConstantSize, ConstantSize, ConstantSize)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">Creates and returns a padding (an instance of <a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/border/EmptyBorder.html?is-external=true" title="class or interface in javax.swing.border"><code>EmptyBorder</code></a>)
with the specified margins.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#createPadding(java.lang.String,%20java.lang.Object...)">createPadding(String, Object...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">Creates and returns a padding (an instance of <a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/border/EmptyBorder.html?is-external=true" title="class or interface in javax.swing.border"><code>EmptyBorder</code></a>)
using sizes as specified by the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createReadOnlyLabel(java.lang.String)">createReadOnlyLabel(String)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a label with an optional mnemonic
that is intended to label a read-only component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createReadOnlyLabel(java.lang.String)">createReadOnlyLabel(String)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a label with an optional mnemonic
that is intended to label a read-only component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createSeparator(java.lang.String,%20int)">createSeparator(String, int)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a labeled separator.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createSeparator(java.lang.String)">createSeparator(String)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a labeled separator with the label in the left-hand
side.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createSeparator(java.lang.String,%20int)">createSeparator(String, int)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a labeled separator.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createSeparator(javax.swing.JLabel)">createSeparator(JLabel)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a labeled separator.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/ComponentFactory.html#createTitle(java.lang.String)">createTitle(String)</a></span> - Method in interface com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories">ComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a title label that uses the foreground color
and font of a <code>TitledBorder</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#createTitle(java.lang.String)">createTitle(String)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Creates and returns a title label that uses the foreground color
and font of a <code>TitledBorder</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#currentCellConstraints">currentCellConstraints</a></span> - Variable in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Holds an instance of <a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout"><code>CellConstraints</code></a> that will be used to
specify the location, extent and alignments of the component to be
added next.</div>
</dd>
</dl>
<a name="_D_">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#debug(boolean)">debug(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Enables or disables the display of layout debug information.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#debugToolTipsEnabled(boolean)">debugToolTipsEnabled(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#decode(java.lang.String)">decode(String)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Parses the encoded column specification and returns a ColumnSpec object
that represents the string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#decode(java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">decode(String, LayoutMap)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Parses the encoded column specifications and returns a ColumnSpec object
that represents the string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#decode(java.lang.String)">decode(String)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Parses the encoded row specification and returns a RowSpec object
that represents the string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#decode(java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">decode(String, LayoutMap)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Parses the encoded row specifications and returns a RowSpec object
that represents the string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#decodeSpecs(java.lang.String)">decodeSpecs(String)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Parses and splits encoded column specifications using the default
<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout"><code>LayoutMap</code></a> and returns an array of ColumnSpec objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#decodeSpecs(java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">decodeSpecs(String, LayoutMap)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Splits and parses the encoded column specifications using the given
<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout"><code>LayoutMap</code></a> and returns an array of ColumnSpec objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#decodeSpecs(java.lang.String)">decodeSpecs(String)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Parses and splits encoded row specifications using the default
<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout"><code>LayoutMap</code></a> and returns an array of RowSpec objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#decodeSpecs(java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">decodeSpecs(String, LayoutMap)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Parses and splits encoded row specifications using the given
<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout"><code>LayoutMap</code></a> and returns an array of RowSpec objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#DEFAULT">DEFAULT</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#DEFAULT">DEFAULT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Use the column's or row's default alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#DEFAULT">DEFAULT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Unless overridden the default alignment for a column is FILL.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#DEFAULT">DEFAULT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Unless overridden the default alignment for a row is CENTER.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DEFAULT">DEFAULT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Use the maximum of all component sizes as column or row size;
measures preferred sizes when asked for the preferred size
and minimum sizes when asked for the minimum size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#DEFAULT_COLSPEC">DEFAULT_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>ColumnSpec</code> that determines its preferred
width by computing the maximum of all column component preferred widths
and its minimum width by computing all column component minimum widths.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#DEFAULT_GROW">DEFAULT_GROW</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">The default resize weight.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#DEFAULT_ROWSPEC">DEFAULT_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>RowSpec</code> that determines its preferred
height by computing the maximum of all column component preferred heights
and its minimum height by computing all column component minimum heights.</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories"><span class="strong">DefaultComponentFactory</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">A singleton implementation of the <a href="./com/jgoodies/forms/factories/ComponentFactory.html" title="interface in com.jgoodies.forms.factories"><code>ComponentFactory</code></a> interface
that creates UI components as required by the
<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder"><code>FormBuilder</code></a>, <a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder"><code>ListViewBuilder</code></a>, and other builders.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#DefaultComponentFactory()">DefaultComponentFactory()</a></span> - Constructor for class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">DefaultFormBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by the <a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder"><code>FormBuilder</code></a> and
the internationalization support provided
by the JGoodies Smart Client <code>Resources</code> class.
Although deprecated, this class will remain in the Forms library
for the next versions.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout)">DefaultFormBuilder(FormLayout)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">DefaultFormBuilder(FormLayout, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout and panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout,%20java.util.ResourceBundle)">DefaultFormBuilder(FormLayout, ResourceBundle)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout and resource bundle.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout,%20java.util.ResourceBundle,%20javax.swing.JPanel)">DefaultFormBuilder(FormLayout, ResourceBundle, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout, resource bundle, and panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout,%20com.jgoodies.common.internal.StringResourceAccessor)">DefaultFormBuilder(FormLayout, StringResourceAccessor)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout and resource bundle.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#DefaultFormBuilder(com.jgoodies.forms.layout.FormLayout,%20com.jgoodies.common.internal.StringResourceAccessor,%20javax.swing.JPanel)">DefaultFormBuilder(FormLayout, StringResourceAccessor, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>DefaultFormBuilder</code> for the given
layout, resource bundle, and panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#defaultLabelType(com.jgoodies.forms.builder.FormBuilder.LabelType)">defaultLabelType(FormBuilder.LabelType)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets a new value for the default label type that is used to determine
whether <a href="./com/jgoodies/forms/builder/FormBuilder.html#add(java.lang.String,%20java.lang.Object...)"><code>FormBuilder.add(String, Object...)</code></a> delegates to
<a href="./com/jgoodies/forms/builder/FormBuilder.html#addLabel(java.lang.String,%20java.lang.Object...)"><code>FormBuilder.addLabel(String, Object...)</code></a></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#defaultRowSpec(com.jgoodies.forms.layout.RowSpec)">defaultRowSpec(RowSpec)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets the row specification that shall be used for component rows.</div>
</dd>
<dt><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util"><span class="strong">DefaultUnitConverter</span></a> - Class in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">This is the default implementation of the <a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util"><code>UnitConverter</code></a> interface.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#detailsView(javax.swing.JComponent)">detailsView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional details view that is located under the list view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DIALOG">DIALOG</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A standardized Border that describes the border around
a dialog content that has no tabs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DIALOG">DIALOG</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A standardized reusable padding for dialogs without tabs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#DIALOG_UNITS_X">DIALOG_UNITS_X</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#DIALOG_UNITS_Y">DIALOG_UNITS_Y</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#dialogUnitXAsPixel(int,%20java.awt.Component)">dialogUnitXAsPixel(int, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts horizontal dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#dialogUnitXAsPixel(int,%20java.awt.Component)">dialogUnitXAsPixel(int, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts horizontal dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#dialogUnitXAsPixel(int,%20double)">dialogUnitXAsPixel(int, double)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts horizontal dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#dialogUnitXAsPixel(int,%20java.awt.Component)">dialogUnitXAsPixel(int, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts horizontal dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#dialogUnitYAsPixel(int,%20java.awt.Component)">dialogUnitYAsPixel(int, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts vertical dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#dialogUnitYAsPixel(int,%20java.awt.Component)">dialogUnitYAsPixel(int, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts vertical dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#dialogUnitYAsPixel(int,%20double)">dialogUnitYAsPixel(int, double)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts vertical dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#dialogUnitYAsPixel(int,%20java.awt.Component)">dialogUnitYAsPixel(int, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts vertical dialog units and returns pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU14">DLU14</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared Border with 14dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU14">DLU14</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable padding with 14dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU2">DLU2</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared and reusable Border with 2dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU2">DLU2</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable padding with 2dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU21">DLU21</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared Border with 21dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU21">DLU21</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared padding with 21dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU4">DLU4</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared and reusable Border with 4dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU4">DLU4</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable padding with 4dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU7">DLU7</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared and reusable Border with 7dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU7">DLU7</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable padding with 7dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#DLU9">DLU9</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared and reusable Border with 9dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#DLU9">DLU9</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable padding with 9dlu on all sides.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#DLUX">DLUX</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#dluX(int)">dluX(int)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Creates and returns a ConstantSize for the specified value
in horizontal dialog units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX1">DLUX1</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX11">DLUX11</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX14">DLUX14</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX2">DLUX2</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX21">DLUX21</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">21 horizontal dialog units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX3">DLUX3</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX4">DLUX4</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX5">DLUX5</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX6">DLUX6</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX7">DLUX7</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX8">DLUX8</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUX9">DLUX9</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#DLUY">DLUY</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#dluY(int)">dluY(int)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Creates and returns a ConstantSize for the specified value
in vertical dialog units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY1">DLUY1</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY11">DLUY11</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY14">DLUY14</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY2">DLUY2</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY21">DLUY21</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">21 vertical dialog units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY3">DLUY3</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY4">DLUY4</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY5">DLUY5</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY6">DLUY6</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY7">DLUY7</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY8">DLUY8</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#DLUY9">DLUY9</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpAll(java.awt.Container)">dumpAll(Container)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps all layout state to the console: column and row specifications,
column and row groups, grid bounds and cell constraints.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpColumnGroups(com.jgoodies.forms.layout.FormLayout)">dumpColumnGroups(FormLayout)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the layout's column groups to the console.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpColumnSpecs(com.jgoodies.forms.layout.FormLayout)">dumpColumnSpecs(FormLayout)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the layout's column specifications to the console.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpConstraints(java.awt.Container)">dumpConstraints(Container)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the component constraints to the console.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpGridBounds(java.awt.Container)">dumpGridBounds(Container)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the container's grid info to the console if and only
if the container's layout is a <code>FormLayout</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpGridBounds(com.jgoodies.forms.layout.FormLayout.LayoutInfo)">dumpGridBounds(FormLayout.LayoutInfo)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the grid layout info to the console.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpRowGroups(com.jgoodies.forms.layout.FormLayout)">dumpRowGroups(FormLayout)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the layout's row groups to the console.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#dumpRowSpecs(com.jgoodies.forms.layout.FormLayout)">dumpRowSpecs(FormLayout)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Dumps the layout's row specifications to the console.</div>
</dd>
</dl>
<a name="_E_">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#EMPTY">EMPTY</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A prepared and reusable EmptyBorder without gaps.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#EMPTY">EMPTY</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A prepared and reusable EmptyBorder without gaps.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#encode()">encode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns a parseable string representation of this bounded size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#encode()">encode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns a parseable string representation of this constant size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html#encode()">encode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html" title="class in com.jgoodies.forms.layout">ConstantSize.Unit</a></dt>
<dd>
<div class="block">Returns a parseable string representation of this unit.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#encode()">encode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns a short and parseable string representation of this
form specification.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#encode()">encode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Returns a parseable string representation of this prototype size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Size.html#encode()">encode()</a></span> - Method in interface com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout">Size</a></dt>
<dd>
<div class="block">Returns a String respresentation of this Size object that can
be parsed by the Forms parser.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Indicates whether some other BoundedSize is "equal to" this one.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Indicates whether some other ConstantSize is "equal to" this one.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Indicates whether some other ConstantSize is "equal to" this one.</div>
</dd>
</dl>
<a name="_F_">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#factory(com.jgoodies.forms.factories.ComponentFactory)">factory(ComponentFactory)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets <code>factory</code> as this builder's new component factory
that is used when adding implicitly created components such as
labels, titles, or titled separators.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#factory(com.jgoodies.forms.factories.ComponentFactory)">factory(ComponentFactory)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets <code>factory</code> as this builder's new component factory
that is used to create the label or header components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecParser.html#fail(java.lang.String,%20int,%20java.lang.String)">fail(String, int, String)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecParser.html" title="class in com.jgoodies.forms.layout">FormSpecParser</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#FILL">FILL</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#FILL">FILL</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Fill the cell either horizontally or vertically.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#FILL">FILL</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">By default fill the component into the column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#FILL">FILL</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">By default fill the component into the row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#filterView(javax.swing.JComponent)">filterView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional view that will be placed in the upper right corner
of the built list view panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#filterViewColumn(java.lang.String,%20java.lang.Object...)">filterViewColumn(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Changes the FormLayout column specification used to lay out
the filter view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#focusGroup(javax.swing.AbstractButton...)">focusGroup(AbstractButton...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Tries to build a focus group for the given buttons.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#focusGrouped">focusGrouped</a></span> - Variable in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Indicates whether a focus group has been built in <a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#build()"><code>AbstractButtonPanelBuilder.build()</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#focusTraversal(java.awt.FocusTraversalPolicy)">focusTraversal(FocusTraversalPolicy)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#focusTraversal(java.awt.FocusTraversalPolicy)">focusTraversal(FocusTraversalPolicy)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets the panel's focus traversal policy and sets the panel
as focus traversal policy provider.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#focusTraversalPolicy(java.awt.FocusTraversalPolicy)">focusTraversalPolicy(FocusTraversalPolicy)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's focus traversal policy and sets the panel
as focus traversal policy provider.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#focusTraversalPolicy(java.awt.FocusTraversalPolicy)">focusTraversalPolicy(FocusTraversalPolicy)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the panel's focus traversal policy and sets the panel
as focus traversal policy provider.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#focusTraversalType(com.jgoodies.forms.util.FocusTraversalType)">focusTraversalType(FocusTraversalType)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets either a layout or container order focus traversal policy.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#focusTraversalType(com.jgoodies.forms.util.FocusTraversalType)">focusTraversalType(FocusTraversalType)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/util/FocusTraversalType.html" title="enum in com.jgoodies.forms.util"><span class="strong">FocusTraversalType</span></a> - Enum in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">An abstraction for frequently used focus traversal policy types.</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/FocusTraversalUtilsAccessor.html" title="class in com.jgoodies.forms.internal"><span class="strong">FocusTraversalUtilsAccessor</span></a> - Class in <a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a></dt>
<dd>
<div class="block">Provides access to the FocusTraversalUtils class that ships with the
JGoodies Standard Dialog Library (JSDL).</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">FormBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block">An general purpose form builder that uses the <a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>
to lay out and populate <code>JPanel</code>s.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#FormBuilder()">FormBuilder()</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder"><span class="strong">FormBuilder.ComponentAdder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/builder/FormBuilder.FormBuildingView.html" title="interface in com.jgoodies.forms.builder"><span class="strong">FormBuilder.FormBuildingView</span></a> - Interface in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block">Describes a view that can be integrated into an existing form
using <a href="./com/jgoodies/forms/builder/FormBuilder.html#add(com.jgoodies.forms.builder.FormBuilder.FormBuildingView)"><code>FormBuilder.add(FormBuildingView)</code></a>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/FormBuilder.LabelType.html" title="enum in com.jgoodies.forms.builder"><span class="strong">FormBuilder.LabelType</span></a> - Enum in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/builder/FormBuilder.ViewAdder.html" title="class in com.jgoodies.forms.builder"><span class="strong">FormBuilder.ViewAdder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug"><span class="strong">FormDebugPanel</span></a> - Class in <a href="./com/jgoodies/forms/debug/package-summary.html">com.jgoodies.forms.debug</a></dt>
<dd>
<div class="block">A panel that paints grid bounds if and only if the panel's layout manager
is a <a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#FormDebugPanel()">FormDebugPanel()</a></span> - Constructor for class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Constructs a FormDebugPanel with all options turned off.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#FormDebugPanel(com.jgoodies.forms.layout.FormLayout)">FormDebugPanel(FormLayout)</a></span> - Constructor for class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Constructs a FormDebugPanel on the given FormLayout instance
that paints the grid in the foreground and paints no diagonals.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#FormDebugPanel(boolean,%20boolean)">FormDebugPanel(boolean, boolean)</a></span> - Constructor for class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Constructs a FormDebugPanel on the given FormLayout
using the specified settings that are otherwise turned off.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#FormDebugPanel(com.jgoodies.forms.layout.FormLayout,%20boolean,%20boolean)">FormDebugPanel(FormLayout, boolean, boolean)</a></span> - Constructor for class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Constructs a FormDebugPanel on the given FormLayout using
the specified settings that are otherwise turned off.</div>
</dd>
<dt><a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug"><span class="strong">FormDebugUtils</span></a> - Class in <a href="./com/jgoodies/forms/debug/package-summary.html">com.jgoodies.forms.debug</a></dt>
<dd>
<div class="block">Provides static methods that help you understand and fix layout problems
when using the <a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormLayout</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">FormLayout is a powerful, flexible and precise general purpose
layout manager.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout()">FormLayout()</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs an empty FormLayout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(java.lang.String)">FormLayout(String)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given encoded column specifications.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">FormLayout(String, LayoutMap)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given encoded column specifications
and LayoutMap.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(java.lang.String,%20java.lang.String)">FormLayout(String, String)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given
encoded column and row specifications and the default LayoutMap.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(java.lang.String,%20java.lang.String,%20com.jgoodies.forms.layout.LayoutMap)">FormLayout(String, String, LayoutMap)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given
encoded column and row specifications and the given LayoutMap.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(com.jgoodies.forms.layout.ColumnSpec[])">FormLayout(ColumnSpec[])</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given column specifications.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#FormLayout(com.jgoodies.forms.layout.ColumnSpec[],%20com.jgoodies.forms.layout.RowSpec[])">FormLayout(ColumnSpec[], RowSpec[])</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Constructs a FormLayout using the given column and row specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormLayout.LayoutInfo</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Stores column and row origins.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormLayout.Measure.html" title="interface in com.jgoodies.forms.layout"><span class="strong">FormLayout.Measure</span></a> - Interface in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An interface that describes how to measure a <code>Component</code>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/extras/FormLayoutUtils.html" title="class in com.jgoodies.forms.extras"><span class="strong">FormLayoutUtils</span></a> - Class in <a href="./com/jgoodies/forms/extras/package-summary.html">com.jgoodies.forms.extras</a></dt>
<dd>
<div class="block">Consists only of static methods that provide convenience behavior
for working with the <code>FormLayout</code>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html" title="class in com.jgoodies.forms.extras"><span class="strong">FormLayoutUtils.ConstraintIterator</span></a> - Class in <a href="./com/jgoodies/forms/extras/package-summary.html">com.jgoodies.forms.extras</a></dt>
<dd>
<div class="block">Iterates over a FormLayout container's <code>CellConstraints</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html#FormLayoutUtils.ConstraintIterator(java.awt.Container)">FormLayoutUtils.ConstraintIterator(Container)</a></span> - Constructor for class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils.ConstraintIterator</a></dt>
<dd>
<div class="block">Constructs a ConstraintIterator for the given FormLayout container.</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories"><span class="strong">Forms</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">Provides convenience behavior for building frequently used categories of forms.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormSpec</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An abstract class that specifies columns and rows in FormLayout
by their default alignment, start size and resizing behavior.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#FormSpec(com.jgoodies.forms.layout.FormSpec.DefaultAlignment,%20com.jgoodies.forms.layout.Size,%20double)">FormSpec(FormSpec.DefaultAlignment, Size, double)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Constructs a <code>FormSpec</code> for the given default alignment,
size, and resize weight.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#FormSpec(com.jgoodies.forms.layout.FormSpec.DefaultAlignment,%20java.lang.String)">FormSpec(FormSpec.DefaultAlignment, String)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Constructs a FormSpec from the specified encoded description.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormSpec.DefaultAlignment.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormSpec.DefaultAlignment</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An ordinal-based serializable typesafe enumeration for the
column and row default alignment types.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormSpecParser.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormSpecParser</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Parses encoded column and row specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormSpecParser.FormLayoutParseException.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormSpecParser.FormLayoutParseException</span></a> - Exception in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Used by the parser for encoded column and row specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout"><span class="strong">FormSpecs</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Provides frequently used column and row specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms"><span class="strong">FormsSetup</span></a> - Class in <a href="./com/jgoodies/forms/package-summary.html">com.jgoodies.forms</a></dt>
<dd>
<div class="block">Provides access to global Forms settings.</div>
</dd>
<dt><a href="./com/jgoodies/forms/util/FormUtils.html" title="class in com.jgoodies.forms.util"><span class="strong">FormUtils</span></a> - Class in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">A library-internal class that consists only of static utility methods.</div>
</dd>
</dl>
<a name="_G_">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#getAverageCharacterWidthTestString()">getAverageCharacterWidthTestString()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Returns the string used to compute the average character width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#getBasis()">getBasis()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns the base size, which is not-<code>null</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.Padding.html#getBorderInsets()">getBorderInsets()</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.Padding.html" title="class in com.jgoodies.forms.factories">Paddings.Padding</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.Padding.html#getBorderInsets(java.awt.Component)">getBorderInsets(Component)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.Padding.html" title="class in com.jgoodies.forms.factories">Paddings.Padding</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.Padding.html#getBorderInsets(java.awt.Component,%20java.awt.Insets)">getBorderInsets(Component, Insets)</a></span> - Method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.Padding.html" title="class in com.jgoodies.forms.factories">Paddings.Padding</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getButtonBarPad()">getButtonBarPad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a pad used to separate a button bar from a component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getButtonBarPad()">getButtonBarPad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#getColumn()">getColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#getColumn()">getColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns the cursor's column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getColumnCount()">getColumnCount()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Returns the number of columns in the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getColumnCount()">getColumnCount()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the number of columns in this layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getColumnGroups()">getColumnGroups()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns a deep copy of the column groups.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#getColumnIncrementSign()">getColumnIncrementSign()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns the sign (-1 or 1) used to increment the cursor's column
when moving to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getColumnSpec(int)">getColumnSpec(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the <code>ColumnSpec</code> at the specified column index.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getComponentFactory()">getComponentFactory()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Returns this builder's component factory.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#getComponentFactoryDefault()">getComponentFactoryDefault()</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Returns the factory that is used as default for new builder's
as they are created.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getConstraints(java.awt.Component)">getConstraints(Component)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Looks up and returns the constraints for the specified component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getContainer()">getContainer()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getPanel()"><code>AbstractBuilder.getPanel()</code></a></i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getCurrent()">getCurrent()</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns the current <code>LayoutStyle</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#getDebugToolTipsEnabledDefault()">getDebugToolTipsEnabledDefault()</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Returns whether the debug tool tips are enabled or not.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#getDefaultAlignment()">getDefaultAlignment()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns the default alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#getDefaultAlignmentExplictlySet()">getDefaultAlignmentExplictlySet()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns whether the default alignment has been explicitly set or not.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getDefaultButtonHeight()">getDefaultButtonHeight()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's default button height.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getDefaultButtonHeight()">getDefaultButtonHeight()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getDefaultButtonWidth()">getDefaultButtonWidth()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's default button width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getDefaultButtonWidth()">getDefaultButtonWidth()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#getDefaultDialogFont()">getDefaultDialogFont()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Returns the dialog font that is used to compute the dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#getDefaultScreenResolution()">getDefaultScreenResolution()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Computes and returns the default resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#getDefaultUnit()">getDefaultUnit()</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Returns the Unit that is used if an encoded ConstantSize contains
no unit string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#getDialogBaseUnitsX(java.awt.Component)">getDialogBaseUnitsX(Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Gets and returns the horizontal dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#getDialogBaseUnitsX(java.awt.Component)">getDialogBaseUnitsX(Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Returns the cached or computed horizontal dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#getDialogBaseUnitsY(java.awt.Component)">getDialogBaseUnitsY(Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Gets and returns the vertical dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#getDialogBaseUnitsY(java.awt.Component)">getDialogBaseUnitsY(Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Returns the cached or computed vertical dialog base units
for the given component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getDialogMarginX()">getDialogMarginX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's horizontal margin for general dialogs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getDialogMarginX()">getDialogMarginX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getDialogMarginY()">getDialogMarginY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's vertical margin for general dialogs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getDialogMarginY()">getDialogMarginY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#getFactory()">getFactory()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#getHeight()">getHeight()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Returns the layout's height, the size between the first and last row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getHonorsVisibility()">getHonorsVisibility()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns whether invisible components shall be taken into account
by this layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html#getInstance()">getInstance()</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/DefaultComponentFactory.html" title="class in com.jgoodies.forms.factories">DefaultComponentFactory</a></dt>
<dd>
<div class="block">Returns the sole instance of this factory class.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#getInstance()">getInstance()</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Lazily instantiates and returns the sole instance.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getLabelComponentPadX()">getLabelComponentPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a gap used to separate a label and associated control.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getLabelComponentPadX()">getLabelComponentPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getLabelComponentPadY()">getLabelComponentPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a gap used to separate a label and associated control.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getLabelComponentPadY()">getLabelComponentPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#getLabelForFeatureEnabledDefault()">getLabelForFeatureEnabledDefault()</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Returns the global default for the enablement of the setLabelFor feature.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#getLayout()">getLayout()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getLayout()">getLayout()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Returns the FormLayout instance used to build this form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getLayoutAlignmentX(java.awt.Container)">getLayoutAlignmentX(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the alignment along the x axis.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getLayoutAlignmentY(java.awt.Container)">getLayoutAlignmentY(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the alignment along the y axis.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugUtils.html#getLayoutInfo(java.awt.Container)">getLayoutInfo(Container)</a></span> - Static method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugUtils.html" title="class in com.jgoodies.forms.debug">FormDebugUtils</a></dt>
<dd>
<div class="block">Computes and returns the layout's grid origins.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getLayoutInfo(java.awt.Container)">getLayoutInfo(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Computes and returns the horizontal and vertical grid origins.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#getLayoutMap()">getLayoutMap()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#getLeadingColumn()">getLeadingColumn()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Returns the leading column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#getLeadingColumn()">getLeadingColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns the index of the leading column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getLinePad()">getLinePad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a narrow vertical pad used to separate lines.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getLinePad()">getLinePad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#getLowerBound()">getLowerBound()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns the optional lower bound.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getNarrowLinePad()">getNarrowLinePad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a narrow vertical pad used to separate lines.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getNarrowLinePad()">getNarrowLinePad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#getOpaqueDefault()">getOpaqueDefault()</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html#getOrCreateFocusTraversalPolicy(java.awt.FocusTraversalPolicy,%20com.jgoodies.forms.util.FocusTraversalType,%20java.awt.Component)">getOrCreateFocusTraversalPolicy(FocusTraversalPolicy, FocusTraversalType, Component)</a></span> - Static method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html" title="class in com.jgoodies.forms.internal">InternalFocusSetupUtils</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#getPanel()">getPanel()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Returns the panel used to build the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getPanel()">getPanel()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Returns the panel used to build the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getParagraphPad()">getParagraphPad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a pad used to separate paragraphs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getParagraphPad()">getParagraphPad()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#getPixelSize(java.awt.Component)">getPixelSize(Component)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Converts the size if necessary and returns the value in pixels.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#getPrototype()">getPrototype()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Returns this size's prototype string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getRelatedComponentsPadX()">getRelatedComponentsPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a horizontal gap used to separate related controls.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getRelatedComponentsPadX()">getRelatedComponentsPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getRelatedComponentsPadY()">getRelatedComponentsPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a vertical gap used to separate related controls.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getRelatedComponentsPadY()">getRelatedComponentsPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#getResizeWeight()">getResizeWeight()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns the current resize weight.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#getResourceString(java.lang.String)">getResourceString(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Looks up and returns the internationalized (i15d) string for the given
resource key, for example from a <code>ResourceBundle</code> or
<code>ResourceMap</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#getRoot()">getRoot()</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Lazily initializes and returns the LayoutMap that is used
for variable expansion, if no custom LayoutMap is provided.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#getRow()">getRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Returns the cursor's row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#getRow()">getRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns the cursor's row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#getRowCount()">getRowCount()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Returns the number of rows in the form.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getRowCount()">getRowCount()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the number of rows in this layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getRowGroups()">getRowGroups()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns a deep copy of the row groups.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#getRowSpec(int)">getRowSpec(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the <code>RowSpec</code> at the specified row index.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#getScreenResolution(java.awt.Component)">getScreenResolution(Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Returns the components screen resolution or the default screen
resolution if the component is null or has no toolkit assigned yet.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#getSize()">getSize()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns the size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getTabbedDialogMarginX()">getTabbedDialogMarginX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's horizontal margin for dialogs that consist of
a tabbed pane.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getTabbedDialogMarginX()">getTabbedDialogMarginX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getTabbedDialogMarginY()">getTabbedDialogMarginY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns this style's vertical margin for dialogs that consist of
a tabbed pane.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getTabbedDialogMarginY()">getTabbedDialogMarginY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#getUnit()">getUnit()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns this size's unit.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#getUnitConverter()">getUnitConverter()</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Returns the current <a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util"><code>UnitConverter</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getUnrelatedComponentsPadX()">getUnrelatedComponentsPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a horizontal gap used to separate unrelated controls.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getUnrelatedComponentsPadX()">getUnrelatedComponentsPadX()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#getUnrelatedComponentsPadY()">getUnrelatedComponentsPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Returns a vertical gap used to separate unrelated controls.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/MacLayoutStyle.html#getUnrelatedComponentsPadY()">getUnrelatedComponentsPadY()</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util">MacLayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#getUpperBound()">getUpperBound()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns the optional upper bound.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#getValue()">getValue()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns this size's value.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#getWidth()">getWidth()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Returns the layout's width, the size between the first and the last
column origin.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#getX()">getX()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Returns the layout's horizontal origin, the origin of the first column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#getY()">getY()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Returns the layout's vertical origin, the origin of the first row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#GLUE_COLSPEC">GLUE_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>ColumnSpec</code> that has an initial width
of 0 pixels and that grows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#GLUE_ROWSPEC">GLUE_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>RowSpec</code> that has an initial height
of 0 pixels and that grows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#gridHeight">gridHeight</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's vertical grid extent (number of cells).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#gridWidth">gridWidth</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's horizontal grid extend (number of cells).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#gridX">gridX</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's horizontal grid origin (starts at 1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#gridY">gridY</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's vertical grid origin (starts at 1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#GROWING_BUTTON_COLSPEC">GROWING_BUTTON_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal column for a growing button.</div>
</dd>
</dl>
<a name="_H_">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#hAlign">hAlign</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's horizontal alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#hashCode()">hashCode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns a hash code value for the object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#hashCode()">hashCode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns a hash code value for the object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#hashCode()">hashCode()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Returns a hash code value for the object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html#hasNext()">hasNext()</a></span> - Method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils.ConstraintIterator</a></dt>
<dd>
<div class="block">Returns <tt>true</tt> if the iteration has more elements.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#headerText(java.lang.String,%20java.lang.Object...)">headerText(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Creates a header label for the given marked text and sets it as label view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#honorsVisibility(boolean)">honorsVisibility(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Specifies whether invisible components shall be taken into account by
this builder for computing the layout size and setting component bounds.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#honorsVisibility(javax.swing.JComponent,%20boolean)">honorsVisibility(JComponent, boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures how this builder's layout shall handle the visibility
of the given component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#honorsVisibility">honorsVisibility</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes whether individual components shall be taken into account
by the FormLayout if 1) they are invisible and 2) the FormLayout
does not honor the visibility.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#honorVisibility(boolean)">honorVisibility(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Specifies whether invisible components shall be taken into account by
this builder for computing the layout size and setting component bounds.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#horizontal(java.lang.String,%20javax.swing.JComponent...)">horizontal(String, JComponent...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given components are laid out
horizontally separated by gaps as described by the given
FormLayout gap (column) specification.</div>
</dd>
</dl>
<a name="_I_">
<!-- -->
</a>
<h2 class="title">I</h2>
<dl>
<dt><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">I15dPanelBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by the internationalization support provided
by the JGoodies Smart Client <code>Resources</code> class.
Although deprecated, this class will remain in the Forms library
for the next versions.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#I15dPanelBuilder(com.jgoodies.forms.layout.FormLayout,%20java.util.ResourceBundle)">I15dPanelBuilder(FormLayout, ResourceBundle)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs an I15dPanelBuilder for the given layout and resource bundle.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#I15dPanelBuilder(com.jgoodies.forms.layout.FormLayout,%20java.util.ResourceBundle,%20javax.swing.JPanel)">I15dPanelBuilder(FormLayout, ResourceBundle, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs an I15dPanelBuilder for the given FormLayout, resource bundle,
and layout container.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#I15dPanelBuilder(com.jgoodies.forms.layout.FormLayout,%20com.jgoodies.common.internal.StringResourceAccessor)">I15dPanelBuilder(FormLayout, StringResourceAccessor)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs an I15dPanelBuilder for the given FormLayout, resource bundle,
and layout container.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#I15dPanelBuilder(com.jgoodies.forms.layout.FormLayout,%20com.jgoodies.common.internal.StringResourceAccessor,%20javax.swing.JPanel)">I15dPanelBuilder(FormLayout, StringResourceAccessor, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs an I15dPanelBuilder for the given FormLayout, resource bundle,
and layout container.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#IN">IN</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#INCH">INCH</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#inchAsPixel(double,%20java.awt.Component)">inchAsPixel(double, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts Inches and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#inchAsPixel(double,%20java.awt.Component)">inchAsPixel(double, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Inches and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#inchAsPixel(double,%20int)">inchAsPixel(double, int)</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Inches and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#inchAsPixel(double,%20java.awt.Component)">inchAsPixel(double, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts Inches and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#initialComponent(javax.swing.JComponent)">initialComponent(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets a component that should receive the focus when a Window is
made visible for the first time.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#initialComponent(javax.swing.JComponent)">initialComponent(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the component that shall receive the focus if this panel's
parent is made visible the first time.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#insertColumn(int,%20com.jgoodies.forms.layout.ColumnSpec)">insertColumn(int, ColumnSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Inserts the specified column at the specified position.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#insertRow(int,%20com.jgoodies.forms.layout.RowSpec)">insertRow(int, RowSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Inserts the specified row at the specified position.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#insets">insets</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's <code>Insets</code> in it's display area.</div>
</dd>
<dt><a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html" title="class in com.jgoodies.forms.internal"><span class="strong">InternalFocusSetupUtils</span></a> - Class in <a href="./com/jgoodies/forms/internal/package-summary.html">com.jgoodies.forms.internal</a></dt>
<dd>
<div class="block">Provides internal convenience behavior for builders that
setup a focus traversal policy directly or implicitly
by specifying a focus traversal type plus optional initial component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#invalidateLayout(java.awt.Container)">invalidateLayout(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Invalidates the layout, indicating that if the layout manager
has cached information it should be discarded.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#isDebugToolTipsEnabled()">isDebugToolTipsEnabled()</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.html#isGroupedColumn(com.jgoodies.forms.layout.FormLayout,%20int)">isGroupedColumn(FormLayout, int)</a></span> - Static method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils</a></dt>
<dd>
<div class="block">Checks and answers whether the specified column is grouped
in the given FormLayout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.html#isGroupedRow(com.jgoodies.forms.layout.FormLayout,%20int)">isGroupedRow(FormLayout, int)</a></span> - Static method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils</a></dt>
<dd>
<div class="block">Checks and answers whether the specified row is grouped
in the given FormLayout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#isHorizontal()">isHorizontal()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">Returns if this is a horizontal specification (vs. vertical).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#isHorizontal()">isHorizontal()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Returns if this is a horizontal specification (vs. vertical).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#isLabelForApplicable(javax.swing.JLabel,%20java.awt.Component)">isLabelForApplicable(JLabel, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Checks and answers whether the given component shall be set
as component for a previously added label using
<a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/JLabel.html?is-external=true#setLabelFor(java.awt.Component)" title="class or interface in javax.swing"><code>JLabel.setLabelFor(Component)</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/FormUtils.html#isLafAqua()">isLafAqua()</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/FormUtils.html" title="class in com.jgoodies.forms.util">FormUtils</a></dt>
<dd>
<div class="block">Lazily checks and answers whether the Aqua look&feel is active.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#isLeftToRight()">isLeftToRight()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Returns whether this builder fills the form left-to-right
or right-to-left.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#isLeftToRight()">isLeftToRight()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Returns whether this builder fills the form left-to-right
or right-to-left.</div>
</dd>
</dl>
<a name="_L_">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#label(javax.swing.JComponent)">label(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the mandatory label view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#LABEL_COMPONENT_GAP_COLSPEC">LABEL_COMPONENT_GAP_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal gap between a label and an associated
component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#LABEL_COMPONENT_GAP_ROWSPEC">LABEL_COMPONENT_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal gap between a label and an associated
component.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#labelFor(java.awt.Component)">labelFor(Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#labelForFeatureEnabled(boolean)">labelForFeatureEnabled(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Enables or disables the setLabelFor feature for this builder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#labelForFeatureEnabled(boolean)">labelForFeatureEnabled(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Enables or disables the setLabelFor feature for this PanelBuilder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#labelText(java.lang.String,%20java.lang.Object...)">labelText(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Creates a plain label for the given marked text and sets it as label view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#layout(com.jgoodies.forms.layout.FormLayout)">layout(FormLayout)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets <code>layout</code> as the layout to use by this builder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#layoutContainer(java.awt.Container)">layoutContainer(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Lays out the specified container using this form layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#layoutMap(com.jgoodies.forms.layout.LayoutMap)">layoutMap(LayoutMap)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's FormLayout to use the given layout map
for expanding layout variables.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout"><span class="strong">LayoutMap</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Provides a hierarchical variable expansion useful to improve layout
consistency, style guide compliance, and layout readability.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#LayoutMap()">LayoutMap()</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Constructs a LayoutMap that has the root LayoutMap as parent.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#LayoutMap(com.jgoodies.forms.layout.LayoutMap)">LayoutMap(LayoutMap)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Constructs a LayoutMap with the given optional parent.</div>
</dd>
<dt><a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util"><span class="strong">LayoutStyle</span></a> - Class in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">An abstract class that describes a layout and design style guide.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#LayoutStyle()">LayoutStyle()</a></span> - Constructor for class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#leadingColumnOffset(int)">leadingColumnOffset(int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets the offset of the leading column, often 0 or 1.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#LEFT">LEFT</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#LEFT">LEFT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Put the component in the left.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#LEFT">LEFT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">By default put components in the left.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#LINE_GAP_ROWSPEC">LINE_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes the logical vertical default gap between two rows in the grid.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#lineGapSize(com.jgoodies.forms.layout.ConstantSize)">lineGapSize(ConstantSize)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets the size of gaps between component lines using the given
constant size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listBar(javax.swing.JComponent...)">listBar(JComponent...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Builds a button bar using the given buttons and sets it as list bar.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listBarView(javax.swing.JComponent)">listBarView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional list bar - often a button bar -
that will be located in the lower left corner of the list view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listExtrasView(javax.swing.JComponent)">listExtrasView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional view that is located in the lower right corner
of the list view, aligned with the list bar.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listStack(javax.swing.JComponent...)">listStack(JComponent...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Builds a button stack using the given buttons and sets it as list stack.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listStackView(javax.swing.JComponent)">listStackView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional list stack - often a stack of buttons -
that will be located on the right-hand side of the list view.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listView(javax.swing.JComponent)">listView(JComponent)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the given component as the the mandatory list view.</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">ListViewBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block">Builds list/table views from a set of mandatory and optional components:
label, filter/search,
list (table),
list buttons, list extras,
details view (or preview).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#listViewRow(java.lang.String,%20java.lang.Object...)">listViewRow(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Changes the FormLayout row specification used to lay out the list view.</div>
</dd>
</dl>
<a name="_M_">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><a href="./com/jgoodies/forms/util/MacLayoutStyle.html" title="class in com.jgoodies.forms.util"><span class="strong">MacLayoutStyle</span></a> - Class in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">A <a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util"><code>LayoutStyle</code></a> that aims to provide layout constants as defined by
Microsoft's <em>User Experience Guidelines</em>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#maximumLayoutSize(java.awt.Container)">maximumLayoutSize(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Returns the maximum dimensions for this layout given the components
in the specified target container.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#maximumSize(java.awt.Container,%20java.util.List,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure)">maximumSize(Container, List, FormLayout.Measure, FormLayout.Measure, FormLayout.Measure)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns this size as pixel size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#maximumSize(java.awt.Container,%20java.util.List,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure)">maximumSize(Container, List, FormLayout.Measure, FormLayout.Measure, FormLayout.Measure)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns this size as pixel size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#maximumSize(java.awt.Container,%20java.util.List,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure)">maximumSize(Container, List, FormLayout.Measure, FormLayout.Measure, FormLayout.Measure)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Computes and returns the width of this Size's prototype in pixel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Size.html#maximumSize(java.awt.Container,%20java.util.List,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure,%20com.jgoodies.forms.layout.FormLayout.Measure)">maximumSize(Container, List, FormLayout.Measure, FormLayout.Measure, FormLayout.Measure)</a></span> - Method in interface com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout">Size</a></dt>
<dd>
<div class="block">Computes and returns this Size's maximum pixel size applied to
the given list of components using the specified measures.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#MILLIMETER">MILLIMETER</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#millimeterAsPixel(double,%20java.awt.Component)">millimeterAsPixel(double, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts Millimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#millimeterAsPixel(double,%20java.awt.Component)">millimeterAsPixel(double, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Millimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#millimeterAsPixel(double,%20int)">millimeterAsPixel(double, int)</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts Millimeters and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#millimeterAsPixel(double,%20java.awt.Component)">millimeterAsPixel(double, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts Millimeters and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#MIN_COLSPEC">MIN_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>ColumnSpec</code> that determines its width by
computing the maximum of all column component minimum widths.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#MIN_ROWSPEC">MIN_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>RowSpec</code> that determines its height by
computing the maximum of all column component minimum heights.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#MINIMUM">MINIMUM</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Use the maximum of all component minimum sizes as column or row size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#minimumLayoutSize(java.awt.Container)">minimumLayoutSize(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Determines the minimum size of the <code>parent</code> container
using this form layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#MM">MM</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#MODERN_AVERAGE_CHARACTER_TEST_STRING">MODERN_AVERAGE_CHARACTER_TEST_STRING</a></span> - Static variable in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd> </dd>
</dl>
<a name="_N_">
<!-- -->
</a>
<h2 class="title">N</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#name(java.lang.String)">name(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the name of the panel this builder works with.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#namePrefix(java.lang.String)">namePrefix(String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the prefix that is prepended to the component name of components
that have no name set or that are are implicitly created by this builder,
e.g. the (header) label.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#NARROW_LINE_GAP_ROWSPEC">NARROW_LINE_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical vertical narrow gap between two rows in the grid.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#nextColumn()">nextColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Moves to the next column, does the same as #nextColumn(1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextColumn()">nextColumn()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Moves to the next column, does the same as #nextColumn(1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextColumn(int)">nextColumn(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Moves to the next column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html#nextConstraints()">nextConstraints()</a></span> - Method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.ConstraintIterator.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils.ConstraintIterator</a></dt>
<dd>
<div class="block">Returns the next element in the iteration.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextLine()">nextLine()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Moves to the next line: increases the row and resets the column;
does the same as #nextLine(1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextLine(int)">nextLine(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<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>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#nextRow()">nextRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Increases the row by one; does the same as #nextRow(1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextRow()">nextRow()</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Increases the row by one; does the same as #nextRow(1).</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#nextRow(int)">nextRow(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Increases the row by the specified rows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#NO_GROW">NO_GROW</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Gives a column or row a fixed size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#NONE">NONE</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">A special alignment value for table column alignment specifications.</div>
</dd>
</dl>
<a name="_O_">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#offset(int,%20int)">offset(int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">When adding components, the cell constraints origin are moved
along the X and Y axis using an offset
as specified by <code>offsetX</code> and <code>offsetY</code> respectively.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#OLD_AVERAGE_CHARACTER_TEST_STRING">OLD_AVERAGE_CHARACTER_TEST_STRING</a></span> - Static variable in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#opaque(boolean)">opaque(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#opaque(boolean)">opaque(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's opaque state.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#opaque(boolean)">opaque(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#opaque(boolean)">opaque(boolean)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets the panel's opaque state.</div>
</dd>
</dl>
<a name="_P_">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#padding(javax.swing.border.EmptyBorder)">padding(EmptyBorder)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#padding(javax.swing.border.EmptyBorder)">padding(EmptyBorder)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's padding, an empty border.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets the panel's padding as an EmptyBorder using the given specification
for the top, left, bottom, right margins in DLU.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#padding(javax.swing.border.EmptyBorder)">padding(EmptyBorder)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/I15dPanelBuilder.html" title="class in com.jgoodies.forms.builder">I15dPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#padding(javax.swing.border.EmptyBorder)">padding(EmptyBorder)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets an optional padding (an empty border) that surrounds the list view
including the label and details.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/ListViewBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/ListViewBuilder.html" title="class in com.jgoodies.forms.builder">ListViewBuilder</a></dt>
<dd>
<div class="block">Sets the panel's padding as an EmptyBorder using the given specification
for the top, left, bottom, right margins in DLU.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#padding(javax.swing.JComponent,%20javax.swing.border.EmptyBorder)">padding(JComponent, EmptyBorder)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where <code>component</code> is surrounded
by the given empty border.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#padding(javax.swing.JComponent,%20java.lang.String,%20java.lang.Object...)">padding(JComponent, String, Object...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where <code>component</code> is surrounded
by white space (an empty border) as described by <code>paddingSpec</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#padding(javax.swing.border.EmptyBorder)">padding(EmptyBorder)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets a padding around this builder's panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#padding(java.lang.String,%20java.lang.Object...)">padding(String, Object...)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets the panel's padding as an EmptyBorder using the given specification
for the top, left, bottom, right margins in DLU.</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories"><span class="strong">Paddings</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">Provides constants and factory methods for paddings that use
instances of <a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><code>ConstantSize</code></a> to define the margins.</div>
</dd>
<dt><a href="./com/jgoodies/forms/factories/Paddings.Padding.html" title="class in com.jgoodies.forms.factories"><span class="strong">Paddings.Padding</span></a> - Class in <a href="./com/jgoodies/forms/factories/package-summary.html">com.jgoodies.forms.factories</a></dt>
<dd>
<div class="block">An <a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/border/EmptyBorder.html?is-external=true" title="class or interface in javax.swing.border"><code>EmptyBorder</code></a> that uses 4 instances of <a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout"><code>ConstantSize</code></a>
to define the top, left, bottom and right gap.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#paint(java.awt.Graphics)">paint(Graphics)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Paints the panel.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#paintComponent(java.awt.Graphics)">paintComponent(Graphics)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Paints the component and - if background painting is enabled - the grid.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#paintRowsDefault">paintRowsDefault</a></span> - Static variable in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#panel(javax.swing.JPanel)">panel(JPanel)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Sets <code>panel</code> as the panel that this builder shall work with.</div>
</dd>
<dt><a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder"><span class="strong">PanelBuilder</span></a> - Class in <a href="./com/jgoodies/forms/builder/package-summary.html">com.jgoodies.forms.builder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder"><code>FormBuilder</code></a>. However, this class
will remain in the Forms library for the next versions.</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#PanelBuilder(com.jgoodies.forms.layout.FormLayout)">PanelBuilder(FormLayout)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>PanelBuilder</code> for the given
layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#PanelBuilder(com.jgoodies.forms.layout.FormLayout,%20javax.swing.JPanel)">PanelBuilder(FormLayout, JPanel)</a></span> - Constructor for class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Constructs a <code>PanelBuilder</code> for the given
FormLayout and layout container.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#PARAGRAPH_GAP_ROWSPEC">PARAGRAPH_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes the logical vertical default gap between two paragraphs in
the layout grid.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#paragraphGapSize(com.jgoodies.forms.layout.ConstantSize)">paragraphGapSize(ConstantSize)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets the size of gaps between paragraphs using the given
constant size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#PIXEL">PIXEL</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#pixel(int)">pixel(int)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Creates and returns a ConstantSize
for the specified pixel value.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#POINT">POINT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#pointAsPixel(int,%20java.awt.Component)">pointAsPixel(int, Component)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Converts DTP Points and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#pointAsPixel(int,%20java.awt.Component)">pointAsPixel(int, Component)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts DTP Points and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/AbstractUnitConverter.html#pointAsPixel(double,%20int)">pointAsPixel(double, int)</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/AbstractUnitConverter.html" title="class in com.jgoodies.forms.util">AbstractUnitConverter</a></dt>
<dd>
<div class="block">Converts DTP Points and returns pixels using the specified resolution.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/UnitConverter.html#pointAsPixel(int,%20java.awt.Component)">pointAsPixel(int, Component)</a></span> - Method in interface com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util">UnitConverter</a></dt>
<dd>
<div class="block">Converts DTP Points and returns pixels using the resolution of the
given component's graphics object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#PREF_COLSPEC">PREF_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>ColumnSpec</code> that determines its width by
computing the maximum of all column component preferred widths.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#PREF_ROWSPEC">PREF_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">An unmodifiable <code>RowSpec</code> that determines its height by
computing the maximum of all column component preferred heights.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#PREFERRED">PREFERRED</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Use the maximum of all component preferred sizes as column or row size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#preferredLayoutSize(java.awt.Container)">preferredLayoutSize(Container)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Determines the preferred size of the <code>parent</code>
container using this form layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#PROPERTY_AVERAGE_CHARACTER_WIDTH_TEST_STRING">PROPERTY_AVERAGE_CHARACTER_WIDTH_TEST_STRING</a></span> - Static variable in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#PROPERTY_DEFAULT_DIALOG_FONT">PROPERTY_DEFAULT_DIALOG_FONT</a></span> - Static variable in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd> </dd>
<dt><a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout"><span class="strong">PrototypeSize</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">A <a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout"><code>Size</code></a> implementation that computes its width and height
by a prototype String.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#PrototypeSize(java.lang.String)">PrototypeSize(String)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Constructs a PrototypeSize for the given String.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#PT">PT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#PX">PX</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd> </dd>
</dl>
<a name="_R_">
<!-- -->
</a>
<h2 class="title">R</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#radioButtonBar(javax.swing.JRadioButton...)">radioButtonBar(JRadioButton...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given radio buttons
are laid horizontally.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#radioButtonStack(javax.swing.JRadioButton...)">radioButtonStack(JRadioButton...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given radio buttons
are laid vertically.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rc(int,%20int)">rc(int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rc(int,%20int,%20java.lang.String)">rc(int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
decodes vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rc(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rc(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row and column origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rc(int,%20int)">rc(int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rc(int,%20int,%20java.lang.String)">rc(int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
decodes vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rc(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rc(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row and column origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rc(int,%20int)">rc(int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rc(int,%20int,%20java.lang.String)">rc(int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets row and column origins; sets height and width to 1;
decodes vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rc(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rc(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row and column origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rchw(int,%20int,%20int,%20int)">rchw(int, int, int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rchw(int,%20int,%20int,%20int,%20java.lang.String)">rchw(int, int, int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rchw(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rchw(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical and
horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rchw(int,%20int,%20int,%20int)">rchw(int, int, int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rchw(int,%20int,%20int,%20int,%20java.lang.String)">rchw(int, int, int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rchw(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rchw(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical and
horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rchw(int,%20int,%20int,%20int)">rchw(int, int, int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rchw(int,%20int,%20int,%20int,%20java.lang.String)">rchw(int, int, int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rchw(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rchw(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical and
horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rcw(int,%20int,%20int)">rcw(int, int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses a height (row span) of 1
and the vertical and horizontal default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rcw(int,%20int,%20int,%20java.lang.String)">rcw(int, int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#rcw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rcw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical
and horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rcw(int,%20int,%20int)">rcw(int, int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses a height (row span) of 1
and the vertical and horizontal default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rcw(int,%20int,%20int,%20java.lang.String)">rcw(int, int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#rcw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rcw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical
and horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rcw(int,%20int,%20int)">rcw(int, int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; uses a height (row span) of 1
and the vertical and horizontal default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rcw(int,%20int,%20int,%20java.lang.String)">rcw(int, int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width;
decodes the vertical and horizontal alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#rcw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">rcw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the row, column, height, and width; sets the vertical
and horizontal alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#RELATED_GAP_COLSPEC">RELATED_GAP_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal gap between two related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#RELATED_GAP_ROWSPEC">RELATED_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical vertical gap between two related components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#removeColumn(int)">removeColumn(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Removes the column with the given column index from the layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#removeLayoutComponent(java.awt.Component)">removeLayoutComponent(Component)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Removes the specified component from this layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#removeRow(int)">removeRow(int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Removes the row with the given row index from the layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#RIGHT">RIGHT</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#RIGHT">RIGHT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Put the component in the right.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ColumnSpec.html#RIGHT">RIGHT</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ColumnSpec.html" title="class in com.jgoodies.forms.layout">ColumnSpec</a></dt>
<dd>
<div class="block">By default put components in the right.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/extras/FormLayoutUtils.html#rowContainsComponent(java.awt.Container,%20int)">rowContainsComponent(Container, int)</a></span> - Static method in class com.jgoodies.forms.extras.<a href="./com/jgoodies/forms/extras/FormLayoutUtils.html" title="class in com.jgoodies.forms.extras">FormLayoutUtils</a></dt>
<dd>
<div class="block">Checks and answers whether the given FormLayout container
contains a component in the specified row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowContainsKey(java.lang.String)">rowContainsKey(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Returns <code>true</code> if this map or a parent map - if any - contains
a RowSpec mapping for the specified key.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowGet(java.lang.String)">rowGet(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Looks up and returns the RowSpec associated with the given key.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#rowGroup(int...)">rowGroup(int...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout to group (make equally high)
the rows with the given indices.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html#rowGroupingEnabled(boolean)">rowGroupingEnabled(boolean)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/DefaultFormBuilder.html" title="class in com.jgoodies.forms.builder">DefaultFormBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Enables or disables the grouping of new data rows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#rowGroups(int[]...)">rowGroups(int[]...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout to group (make equally wide)
the rows per array of row indices.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html#rowOrigins">rowOrigins</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.LayoutInfo.html" title="class in com.jgoodies.forms.layout">FormLayout.LayoutInfo</a></dt>
<dd>
<div class="block">Holds the origins of the rows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowPut(java.lang.String,%20java.lang.String)">rowPut(String, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowPut(java.lang.String,%20com.jgoodies.forms.layout.RowSpec)">rowPut(String, RowSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Associates the specified ColumnSpec with the specified key in this map.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowPut(java.lang.String,%20com.jgoodies.forms.layout.Size)">rowPut(String, Size)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#rowRemove(java.lang.String)">rowRemove(String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Removes the row value mapping for this key from this map if it is
present.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#rows(java.lang.String,%20java.lang.Object...)">rows(String, Object...)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Configures this builder's layout rows using a comma-separated
string of row specifications.The string can be a format string
and will then use the optional format arguments, see
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true#format(java.lang.String,%20java.lang.Object...)" title="class or interface in java.lang"><code>String.format(String, Object...)</code></a>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout"><span class="strong">RowSpec</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Specifies rows in FormLayout by their default orientation,
start size and resizing behavior.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#RowSpec(com.jgoodies.forms.layout.FormSpec.DefaultAlignment,%20com.jgoodies.forms.layout.Size,%20double)">RowSpec(FormSpec.DefaultAlignment, Size, double)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Constructs a RowSpec from the given default orientation,
size, and resize weight.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#RowSpec(com.jgoodies.forms.layout.Size)">RowSpec(Size)</a></span> - Constructor for class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">Constructs a RowSpec for the given size using the
default alignment, and no resizing.</div>
</dd>
</dl>
<a name="_S_">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">setAlignment(CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the horizontal and vertical alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#setAverageCharacterWidthTestString(java.lang.String)">setAverageCharacterWidthTestString(String)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Sets a string that will be used to compute the average character width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#setBackground(java.awt.Color)">setBackground(Color)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/internal/AbstractBuilder.html#background(java.awt.Color)"><code>AbstractBuilder.background(Color)</code></a></i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#setBorder(javax.swing.border.Border)">setBorder(Border)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/internal/AbstractBuilder.html#border(javax.swing.border.Border)"><code>AbstractBuilder.border(Border)</code></a></i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setBounds(int,%20int,%20int,%20int)">setBounds(int, int, int, int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cell bounds (location and extent) to the given column, row,
column span and row span.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setColumn(int)">setColumn(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor to the given column.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setColumnGroup(int...)">setColumnGroup(int...)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets a single column group, where each column gets the same width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setColumnGroups(int[][])">setColumnGroups(int[][])</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets the column groups, where each column in a group gets the same
group wide width.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setColumnSpan(int)">setColumnSpan(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor's column span.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setColumnSpec(int,%20com.jgoodies.forms.layout.ColumnSpec)">setColumnSpec(int, ColumnSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets the ColumnSpec at the specified column index.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractBuilder.html#setComponentFactory(com.jgoodies.forms.factories.ComponentFactory)">setComponentFactory(ComponentFactory)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractBuilder.html" title="class in com.jgoodies.forms.internal">AbstractBuilder</a></dt>
<dd>
<div class="block">Sets a new component factory for this builder,
overriding the default as provided by
<a href="./com/jgoodies/forms/FormsSetup.html#getComponentFactoryDefault()"><code>FormsSetup.getComponentFactoryDefault()</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#setComponentFactoryDefault(com.jgoodies.forms.factories.ComponentFactory)">setComponentFactoryDefault(ComponentFactory)</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Sets the global default that is used to initialize the per-instance
component factory.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setConstraints(java.awt.Component,%20com.jgoodies.forms.layout.CellConstraints)">setConstraints(Component, CellConstraints)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets the constraints for the specified component in this layout.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/LayoutStyle.html#setCurrent(com.jgoodies.forms.util.LayoutStyle)">setCurrent(LayoutStyle)</a></span> - Static method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/LayoutStyle.html" title="class in com.jgoodies.forms.util">LayoutStyle</a></dt>
<dd>
<div class="block">Set a new <code>LayoutStyle</code>.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#setDebugToolTipsEnabled(boolean)">setDebugToolTipsEnabled(boolean)</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Enables or disables the debug tool tips.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/DefaultUnitConverter.html#setDefaultDialogFont(java.awt.Font)">setDefaultDialogFont(Font)</a></span> - Method in class com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/DefaultUnitConverter.html" title="class in com.jgoodies.forms.util">DefaultUnitConverter</a></dt>
<dd>
<div class="block">Sets a dialog font that will be used to compute the dialog base units.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#setDefaultUnit(com.jgoodies.forms.layout.ConstantSize.Unit)">setDefaultUnit(ConstantSize.Unit)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Sets the Unit that shall be used if an encoded ConstantSize
provides no unit string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setExtent(int,%20int)">setExtent(int, int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor's extent to the given column span and row span.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#setGridColor(java.awt.Color)">setGridColor(Color)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Sets the debug grid's color.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setHAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">setHAlignment(CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the horizontal alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setHonorsVisibility(boolean)">setHonorsVisibility(boolean)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Specifies whether invisible components shall be taken into account by
this layout for computing the layout size and setting component bounds.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setHonorsVisibility(java.awt.Component,%20java.lang.Boolean)">setHonorsVisibility(Component, Boolean)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Specifies whether the given component shall be taken into account
for sizing and positioning.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/PanelBuilder.html#setLabelFor(javax.swing.JLabel,%20java.awt.Component)">setLabelFor(JLabel, Component)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/PanelBuilder.html" title="class in com.jgoodies.forms.builder">PanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">Sets <code>label</code> as labeling label for <code>component</code> or an
appropriate child.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#setLabelForFeatureEnabledDefault(boolean)">setLabelForFeatureEnabledDefault(boolean)</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Sets the default value for the setLabelFor feature enablement.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#setLeftToRight(boolean)">setLeftToRight(boolean)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block">Sets the form fill direction to left-to-right or right-to-left.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setLeftToRight(boolean)">setLeftToRight(boolean)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the form fill direction to left-to-right or right-to-left.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html#setOpaque(boolean)">setOpaque(boolean)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractButtonPanelBuilder.html" title="class in com.jgoodies.forms.internal">AbstractButtonPanelBuilder</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>Replaced by <a href="./com/jgoodies/forms/internal/AbstractBuilder.html#opaque(boolean)"><code>AbstractBuilder.opaque(boolean)</code></a></i></div>
</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/FormsSetup.html#setOpaqueDefault(boolean)">setOpaqueDefault(boolean)</a></span> - Static method in class com.jgoodies.forms.<a href="./com/jgoodies/forms/FormsSetup.html" title="class in com.jgoodies.forms">FormsSetup</a></dt>
<dd>
<div class="block">Sets the global default value for a builder's opaque state
that can be overridden per builder.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setOrigin(int,%20int)">setOrigin(int, int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor's origin to the given column and row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#setPaintDiagonals(boolean)">setPaintDiagonals(boolean)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Enables or disables to paint the panel's diagonals.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#setPaintInBackground(boolean)">setPaintInBackground(boolean)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Specifies to paint in background or foreground.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/debug/FormDebugPanel.html#setPaintRows(boolean)">setPaintRows(boolean)</a></span> - Method in class com.jgoodies.forms.debug.<a href="./com/jgoodies/forms/debug/FormDebugPanel.html" title="class in com.jgoodies.forms.debug">FormDebugPanel</a></dt>
<dd>
<div class="block">Enables or disables painting of rows.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setRow(int)">setRow(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor to the given row.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setRowGroup(int...)">setRowGroup(int...)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets a single row group, where each row gets the same height.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setRowGroups(int[][])">setRowGroups(int[][])</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets the row groups, where each row in such a group gets the same group
wide height.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setRowSpan(int)">setRowSpan(int)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the cursor's row span.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.html#setRowSpec(int,%20com.jgoodies.forms.layout.RowSpec)">setRowSpec(int, RowSpec)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout">FormLayout</a></dt>
<dd>
<div class="block">Sets the RowSpec at the specified row index.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#setUnitConverter(com.jgoodies.forms.util.UnitConverter)">setUnitConverter(UnitConverter)</a></span> - Static method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd>
<div class="block">Sets a new UnitConverter that will be used to convert
font-dependent sizes to pixel sizes.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html#setupFocusTraversalPolicyAndProvider(javax.swing.JComponent,%20java.awt.FocusTraversalPolicy,%20com.jgoodies.forms.util.FocusTraversalType,%20java.awt.Component)">setupFocusTraversalPolicyAndProvider(JComponent, FocusTraversalPolicy, FocusTraversalType, Component)</a></span> - Static method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/InternalFocusSetupUtils.html" title="class in com.jgoodies.forms.internal">InternalFocusSetupUtils</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html#setVAlignment(com.jgoodies.forms.layout.CellConstraints.Alignment)">setVAlignment(CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/AbstractFormBuilder.html" title="class in com.jgoodies.forms.internal">AbstractFormBuilder</a></dt>
<dd>
<div class="block">Sets the vertical alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#single(java.lang.String,%20java.lang.String,%20javax.swing.JComponent)">single(String, String, JComponent)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Creates and returns a panel where <code>component</code> is laid out
using a FormLayout with the given column and row specifications.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/Size.html" title="interface in com.jgoodies.forms.layout"><span class="strong">Size</span></a> - Interface in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">An interface that describes sizes as used by the <a href="./com/jgoodies/forms/layout/FormLayout.html" title="class in com.jgoodies.forms.layout"><code>FormLayout</code></a>:
component measuring sizes, constant sizes with value and unit,
and bounded sizes that provide lower and upper bounds for a size.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormLayout.Measure.html#sizeOf(java.awt.Component)">sizeOf(Component)</a></span> - Method in interface com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormLayout.Measure.html" title="interface in com.jgoodies.forms.layout">FormLayout.Measure</a></dt>
<dd>
<div class="block">Computes and returns the size of the given <code>Component</code>.</div>
</dd>
<dt><a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout"><span class="strong">Sizes</span></a> - Class in <a href="./com/jgoodies/forms/layout/package-summary.html">com.jgoodies.forms.layout</a></dt>
<dd>
<div class="block">Consists only of static methods that create and convert sizes
as required by the FormLayout.</div>
</dd>
</dl>
<a name="_T_">
<!-- -->
</a>
<h2 class="title">T</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Borders.html#TABBED_DIALOG">TABBED_DIALOG</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Borders.html" title="class in com.jgoodies.forms.factories">Borders</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
<div class="block">A standardized Border that describes the border around
a dialog content that uses tabs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Paddings.html#TABBED_DIALOG">TABBED_DIALOG</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Paddings.html" title="class in com.jgoodies.forms.factories">Paddings</a></dt>
<dd>
<div class="block">A standardized reusable padding for dialogs that have tabs.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#TOP">TOP</a></span> - Static variable in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#TOP">TOP</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Put the component in the top.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/RowSpec.html#TOP">TOP</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/RowSpec.html" title="class in com.jgoodies.forms.layout">RowSpec</a></dt>
<dd>
<div class="block">By default put the components in the top.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#toShortString()">toShortString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Returns a short string representation of this constraints object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#toShortString(com.jgoodies.forms.layout.FormLayout)">toShortString(FormLayout)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Returns a short string representation of this constraints object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#toShortString()">toShortString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns a string representation of this form specification.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/BoundedSize.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/BoundedSize.html" title="class in com.jgoodies.forms.layout">BoundedSize</a></dt>
<dd>
<div class="block">Returns a string representation of this size object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.Alignment.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.Alignment.html" title="class in com.jgoodies.forms.layout">CellConstraints.Alignment</a></dt>
<dd>
<div class="block">Returns this Alignment's name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Constructs and returns a string representation of this constraints object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.html" title="class in com.jgoodies.forms.layout">ConstantSize</a></dt>
<dd>
<div class="block">Returns a string representation of this size object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/ConstantSize.Unit.html" title="class in com.jgoodies.forms.layout">ConstantSize.Unit</a></dt>
<dd>
<div class="block">Returns a string representation of this unit object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.DefaultAlignment.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.DefaultAlignment.html" title="class in com.jgoodies.forms.layout">FormSpec.DefaultAlignment</a></dt>
<dd>
<div class="block">Returns this Alignment's name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpec.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpec.html" title="class in com.jgoodies.forms.layout">FormSpec</a></dt>
<dd>
<div class="block">Returns a string representation of this form specification.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/LayoutMap.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/LayoutMap.html" title="class in com.jgoodies.forms.layout">LayoutMap</a></dt>
<dd>
<div class="block">Returns a string representation of this LayoutMap that lists
the column and row associations.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/PrototypeSize.html#toString()">toString()</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/PrototypeSize.html" title="class in com.jgoodies.forms.layout">PrototypeSize</a></dt>
<dd>
<div class="block">Returns a string representation of this size object.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.html#translate(int,%20int)">translate(int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.html" title="class in com.jgoodies.forms.builder">FormBuilder</a></dt>
<dd>
<div class="block">Moves the cell constraints offset along the X and Y axis
as specified by <code>dx</code> and <code>dy</code> respectively.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#translate(int,%20int)">translate(int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Creates and returns a new CellConstraints instance where the origin
has been moved along the X and Y axis as specified by <code>dx</code>
and <code>dy</code> respectively.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/internal/FocusTraversalUtilsAccessor.html#tryToBuildAFocusGroup(javax.swing.AbstractButton...)">tryToBuildAFocusGroup(AbstractButton...)</a></span> - Static method in class com.jgoodies.forms.internal.<a href="./com/jgoodies/forms/internal/FocusTraversalUtilsAccessor.html" title="class in com.jgoodies.forms.internal">FocusTraversalUtilsAccessor</a></dt>
<dd>
<div class="block">Tries to group the given buttons using the FocusTraversalUtils class
- if available.</div>
</dd>
</dl>
<a name="_U_">
<!-- -->
</a>
<h2 class="title">U</h2>
<dl>
<dt><a href="./com/jgoodies/forms/util/UnitConverter.html" title="interface in com.jgoodies.forms.util"><span class="strong">UnitConverter</span></a> - Interface in <a href="./com/jgoodies/forms/util/package-summary.html">com.jgoodies.forms.util</a></dt>
<dd>
<div class="block">An interface that describes how to convert general sizes to pixel sizes.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#UNRELATED_GAP_COLSPEC">UNRELATED_GAP_COLSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical horizontal gap between two unrelated components.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/FormSpecs.html#UNRELATED_GAP_ROWSPEC">UNRELATED_GAP_ROWSPEC</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/FormSpecs.html" title="class in com.jgoodies.forms.layout">FormSpecs</a></dt>
<dd>
<div class="block">Describes a logical vertical gap between two unrelated components.</div>
</dd>
</dl>
<a name="_V_">
<!-- -->
</a>
<h2 class="title">V</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#vAlign">vAlign</a></span> - Variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Describes the component's vertical alignment.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.LabelType.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.LabelType.html" title="enum in com.jgoodies.forms.builder">FormBuilder.LabelType</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/FocusTraversalType.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/FocusTraversalType.html" title="enum in com.jgoodies.forms.util">FocusTraversalType</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.LabelType.html#values()">values()</a></span> - Static method in enum com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.LabelType.html" title="enum in com.jgoodies.forms.builder">FormBuilder.LabelType</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/util/FocusTraversalType.html#values()">values()</a></span> - Static method in enum com.jgoodies.forms.util.<a href="./com/jgoodies/forms/util/FocusTraversalType.html" title="enum in com.jgoodies.forms.util">FocusTraversalType</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/Forms.html#vertical(java.lang.String,%20javax.swing.JComponent...)">vertical(String, JComponent...)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/Forms.html" title="class in com.jgoodies.forms.factories">Forms</a></dt>
<dd>
<div class="block">Builds and returns a panel where the given components are laid out
vertically separated by gaps as described by the given
FormLayout gap (row) specification.</div>
</dd>
</dl>
<a name="_X_">
<!-- -->
</a>
<h2 class="title">X</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xy(int,%20int)">xy(int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xy(int,%20int,%20java.lang.String)">xy(int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
decodes horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xy(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xy(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column and row origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ViewAdder.html#xy(int,%20int)">xy(int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ViewAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ViewAdder</a></dt>
<dd>
<div class="block">Sets column and row origins of the view to integrate.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xy(int,%20int)">xy(int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xy(int,%20int,%20java.lang.String)">xy(int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
decodes horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xy(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xy(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column and row origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xy(int,%20int)">xy(int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
uses the default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xy(int,%20int,%20java.lang.String)">xy(int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets column and row origins; sets width and height to 1;
decodes horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xy(int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xy(int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column and row origins; sets width and height to 1;
set horizontal and vertical alignment using the specified objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xyw(int,%20int,%20int)">xyw(int, int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses a height (row span) of 1
and the horizontal and vertical default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xyw(int,%20int,%20int,%20java.lang.String)">xyw(int, int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xyw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xyw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xyw(int,%20int,%20int)">xyw(int, int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses a height (row span) of 1
and the horizontal and vertical default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xyw(int,%20int,%20int,%20java.lang.String)">xyw(int, int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xyw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xyw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xyw(int,%20int,%20int)">xyw(int, int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses a height (row span) of 1
and the horizontal and vertical default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xyw(int,%20int,%20int,%20java.lang.String)">xyw(int, int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xyw(int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xyw(int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xywh(int,%20int,%20int,%20int)">xywh(int, int, int, int)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xywh(int,%20int,%20int,%20int,%20java.lang.String)">xywh(int, int, int, int, String)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html#xywh(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xywh(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.builder.<a href="./com/jgoodies/forms/builder/FormBuilder.ComponentAdder.html" title="class in com.jgoodies.forms.builder">FormBuilder.ComponentAdder</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xywh(int,%20int,%20int,%20int)">xywh(int, int, int, int)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xywh(int,%20int,%20int,%20int,%20java.lang.String)">xywh(int, int, int, int, String)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/factories/CC.html#xywh(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xywh(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Static method in class com.jgoodies.forms.factories.<a href="./com/jgoodies/forms/factories/CC.html" title="class in com.jgoodies.forms.factories">CC</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xywh(int,%20int,%20int,%20int)">xywh(int, int, int, int)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; uses default alignments.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xywh(int,%20int,%20int,%20int,%20java.lang.String)">xywh(int, int, int, int, String)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height;
decodes the horizontal and vertical alignments from the given string.</div>
</dd>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/CellConstraints.html#xywh(int,%20int,%20int,%20int,%20com.jgoodies.forms.layout.CellConstraints.Alignment,%20com.jgoodies.forms.layout.CellConstraints.Alignment)">xywh(int, int, int, int, CellConstraints.Alignment, CellConstraints.Alignment)</a></span> - Method in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/CellConstraints.html" title="class in com.jgoodies.forms.layout">CellConstraints</a></dt>
<dd>
<div class="block">Sets the column, row, width, and height; sets the horizontal
and vertical alignment using the specified alignment objects.</div>
</dd>
</dl>
<a name="_Z_">
<!-- -->
</a>
<h2 class="title">Z</h2>
<dl>
<dt><span class="strong"><a href="./com/jgoodies/forms/layout/Sizes.html#ZERO">ZERO</a></span> - Static variable in class com.jgoodies.forms.layout.<a href="./com/jgoodies/forms/layout/Sizes.html" title="class in com.jgoodies.forms.layout">Sizes</a></dt>
<dd> </dd>
</dl>
<a href="#_A_">A</a> <a href="#_B_">B</a> <a href="#_C_">C</a> <a href="#_D_">D</a> <a href="#_E_">E</a> <a href="#_F_">F</a> <a href="#_G_">G</a> <a href="#_H_">H</a> <a href="#_I_">I</a> <a href="#_L_">L</a> <a href="#_M_">M</a> <a href="#_N_">N</a> <a href="#_O_">O</a> <a href="#_P_">P</a> <a href="#_R_">R</a> <a href="#_S_">S</a> <a href="#_T_">T</a> <a href="#_U_">U</a> <a href="#_V_">V</a> <a href="#_X_">X</a> <a href="#_Z_">Z</a> </div>
<!-- ======= 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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="./overview-tree.html">Tree</a></li>
<li><a href="./deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="./help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_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>
<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>
|