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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_03) on Fri Jan 25 23:29:21 CET 2008 -->
<TITLE>
ClassFile (JiBX Java data binding to XML - Version 1.0)
</TITLE>
<META NAME="date" CONTENT="2008-01-25">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ClassFile (JiBX Java data binding to XML - Version 1.0)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/jibx/binding/classes/ClassCache.html" title="class in org.jibx.binding.classes"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/binding/classes/ClassFile.html" target="_top"><B>FRAMES</B></A>
<A HREF="ClassFile.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.jibx.binding.classes</FONT>
<BR>
Class ClassFile</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.jibx.binding.classes.ClassFile</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>ClassFile</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Class file information. Wraps the actual class file data as well as
associated management information.
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>1.0</DD>
<DT><B>Author:</B></DT>
<DD>Dennis M. Sosnoski</DD>
</DL>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected static <A HREF="../../../../org/jibx/binding/classes/ExistingMethod.html" title="class in org.jibx.binding.classes">ExistingMethod</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#EMPTY_METHOD_ARRAY">EMPTY_METHOD_ARRAY</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.classfile.JavaClass</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_curClass">m_curClass</A></B></CODE>
<BR>
Base class information as loaded by BCEL.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_file">m_file</A></B></CODE>
<BR>
Actual class file information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.generic.ClassGen</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_genClass">m_genClass</A></B></CODE>
<BR>
Modified class generator (lazy create, only if needed).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.generic.ConstantPoolGen</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_genPool">m_genPool</A></B></CODE>
<BR>
Constant pool generator for modified class (lazy create, only if
needed).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_hashCode">m_hashCode</A></B></CODE>
<BR>
Cached hash code value for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_inheritDepth">m_inheritDepth</A></B></CODE>
<BR>
Depth of superclass hierarchy for class (lazy computation).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_instanceOfs">m_instanceOfs</A></B></CODE>
<BR>
All classes and interfaces of which this is an instance (lazy create,
only if needed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected <A HREF="../../../../org/jibx/binding/classes/InstructionBuilder.html" title="class in org.jibx.binding.classes">InstructionBuilder</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_instBuilder">m_instBuilder</A></B></CODE>
<BR>
Instruction factory for modified class (lazy create, only if needed).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_interfaceNames">m_interfaceNames</A></B></CODE>
<BR>
Names of all interfaces directly implemented by this class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_isHashCurrent">m_isHashCurrent</A></B></CODE>
<BR>
Hash code computation for class is current flag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_isModified">m_isModified</A></B></CODE>
<BR>
Flag for class modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_isSamePackage">m_isSamePackage</A></B></CODE>
<BR>
Class in same package as superclass flag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_isWritable">m_isWritable</A></B></CODE>
<BR>
File is writable flag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_itemMap">m_itemMap</A></B></CODE>
<BR>
Map to class item information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.classfile.Method[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_methods">m_methods</A></B></CODE>
<BR>
All methods defined by this class or interface (lazy create, only if
needed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_name">m_name</A></B></CODE>
<BR>
Fully qualified class name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_root">m_root</A></B></CODE>
<BR>
Directory root for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_signature">m_signature</A></B></CODE>
<BR>
Signature for class as type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_suffixMap">m_suffixMap</A></B></CODE>
<BR>
Map for method names with possibly generated suffixes (lazy create, only
if needed).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_superClass">m_superClass</A></B></CODE>
<BR>
Super class of this class (set by caller, since it may require
additional information to find the class file).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_superInterfaces">m_superInterfaces</A></B></CODE>
<BR>
Class files of interfaces extended by interface.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.generic.Type</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_type">m_type</A></B></CODE>
<BR>
Class as type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_uniqueIndex">m_uniqueIndex</A></B></CODE>
<BR>
Suffix number for making method names unique (lazy computation).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#m_useCount">m_useCount</A></B></CODE>
<BR>
Usage count for this class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#PACKAGE_ACCESS">PACKAGE_ACCESS</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#PRIVATE_ACCESS">PRIVATE_ACCESS</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#PRIVATEFIELD_ACCESS">PRIVATEFIELD_ACCESS</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#PROTECTED_ACCESS">PROTECTED_ACCESS</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#PUBLIC_ACCESS">PUBLIC_ACCESS</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.ClassLoader</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#s_directLoader">s_directLoader</A></B></CODE>
<BR>
Direct class loader.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static org.apache.bcel.util.ClassPath</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#s_loader">s_loader</A></B></CODE>
<BR>
Singleton loader from classpath.</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#ClassFile(java.lang.String)">ClassFile</A></B>(java.lang.String name)</CODE>
<BR>
Constructor for preexisting class file from classpath.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#ClassFile(java.lang.String, java.io.File, org.jibx.binding.classes.ClassFile, int, java.lang.String[])">ClassFile</A></B>(java.lang.String name,
java.io.File root,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> sclas,
int access,
java.lang.String[] impls)</CODE>
<BR>
Constructor for new class file.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#ClassFile(java.lang.String, java.io.File, java.io.File)">ClassFile</A></B>(java.lang.String name,
java.io.File root,
java.io.File file)</CODE>
<BR>
Constructor for preexisting class file.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#ClassFile(java.lang.String, java.lang.String)">ClassFile</A></B>(java.lang.String name,
java.lang.String sig)</CODE>
<BR>
Constructor for synthetic placeholder classfile with no backing class
data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#ClassFile(java.lang.String, java.lang.String, java.io.InputStream)">ClassFile</A></B>(java.lang.String name,
java.lang.String path,
java.io.InputStream ins)</CODE>
<BR>
Constructor for class file loaded from a stream.</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#accumulateInterfaces(java.lang.String[], java.util.HashMap, java.util.ArrayList)">accumulateInterfaces</A></B>(java.lang.String[] intfs,
java.util.HashMap map,
java.util.ArrayList accs)</CODE>
<BR>
Accumulate interface signatures recursively.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addDefaultConstructor()">addDefaultConstructor</A></B>()</CODE>
<BR>
Add default constructor to a class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addField(java.lang.String, java.lang.String, int)">addField</A></B>(java.lang.String type,
java.lang.String name,
int access)</CODE>
<BR>
Add field to class without initialization.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addField(java.lang.String, java.lang.String, int, java.lang.String)">addField</A></B>(java.lang.String type,
java.lang.String name,
int access,
java.lang.String init)</CODE>
<BR>
Add field to class with initial <code>String</code> value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addInterface(java.lang.String)">addInterface</A></B>(java.lang.String intf)</CODE>
<BR>
Add interface to class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addMethod(org.apache.bcel.classfile.Method)">addMethod</A></B>(org.apache.bcel.classfile.Method method)</CODE>
<BR>
Add method to class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#addPrivateField(java.lang.String, java.lang.String)">addPrivateField</A></B>(java.lang.String type,
java.lang.String name)</CODE>
<BR>
Add private field to class without initialization.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#codeComplete()">codeComplete</A></B>()</CODE>
<BR>
Finalize current modified state of class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#computeHashCode()">computeHashCode</A></B>()</CODE>
<BR>
Computes a hash code based on characteristics of the class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#delete()">delete</A></B>()</CODE>
<BR>
Delete class file information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#deleteField(java.lang.String)">deleteField</A></B>(java.lang.String name)</CODE>
<BR>
Delete field from class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#deriveClassName(java.lang.String, java.lang.String)">deriveClassName</A></B>(java.lang.String prefix,
java.lang.String suffix)</CODE>
<BR>
Derive generated class name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#equalFieldOrMethods(org.apache.bcel.classfile.FieldOrMethod, org.apache.bcel.classfile.FieldOrMethod)">equalFieldOrMethods</A></B>(org.apache.bcel.classfile.FieldOrMethod a,
org.apache.bcel.classfile.FieldOrMethod b)</CODE>
<BR>
Compare two field or method items to see if they're equal.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#equalMethods(org.apache.bcel.classfile.Method, org.apache.bcel.classfile.Method)">equalMethods</A></B>(org.apache.bcel.classfile.Method a,
org.apache.bcel.classfile.Method b)</CODE>
<BR>
Compare two methods to see if they're equal.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#equals(java.lang.Object)">equals</A></B>(java.lang.Object obj)</CODE>
<BR>
Check if objects are equal.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected org.apache.bcel.classfile.Field</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getAccessibleField(java.lang.String)">getAccessibleField</A></B>(java.lang.String name)</CODE>
<BR>
Get internal information for field.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected org.apache.bcel.classfile.Method</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getAccessibleMethod(java.lang.String, java.lang.String)">getAccessibleMethod</A></B>(java.lang.String name,
java.lang.String sig)</CODE>
<BR>
Get internal information for method without respect to potential trailing
arguments or return value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.classfile.Method</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getBestAccessibleMethod(java.lang.String, int, org.apache.bcel.generic.Type, org.apache.bcel.generic.Type[])">getBestAccessibleMethod</A></B>(java.lang.String name,
int access,
org.apache.bcel.generic.Type ret,
org.apache.bcel.generic.Type[] args)</CODE>
<BR>
Get information for best matching method.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getBestMethod(java.lang.String, java.lang.String, java.lang.String[])">getBestMethod</A></B>(java.lang.String name,
java.lang.String ret,
java.lang.String[] args)</CODE>
<BR>
Get information for best matching method.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ExistingMethod.html" title="class in org.jibx.binding.classes">ExistingMethod</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getBindingMethods(java.lang.String, java.lang.String[])">getBindingMethods</A></B>(java.lang.String prefix,
java.lang.String[] matches)</CODE>
<BR>
Get all binding methods currently defined in class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.generic.ClassGen</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getClassGen()">getClassGen</A></B>()</CODE>
<BR>
Get generator for modifying class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.bcel.generic.ConstantPoolGen</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getConstPoolGen()">getConstPoolGen</A></B>()</CODE>
<BR>
Get constant pool generator for modifying class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected org.apache.bcel.classfile.Field</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getDefinedField(java.lang.String)">getDefinedField</A></B>(java.lang.String name)</CODE>
<BR>
Get internal information for field.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getDirectField(java.lang.String)">getDirectField</A></B>(java.lang.String name)</CODE>
<BR>
Get information for field.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getField(java.lang.String)">getField</A></B>(java.lang.String name)</CODE>
<BR>
Get information for field.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getFile()">getFile</A></B>()</CODE>
<BR>
Get actual file for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getInitializerMethod(java.lang.String)">getInitializerMethod</A></B>(java.lang.String sig)</CODE>
<BR>
Get information for initializer.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getInstanceSigs()">getInstanceSigs</A></B>()</CODE>
<BR>
Get signatures for all types of which instances of this type are
instances.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/InstructionBuilder.html" title="class in org.jibx.binding.classes">InstructionBuilder</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getInstructionBuilder()">getInstructionBuilder</A></B>()</CODE>
<BR>
Get instruction builder for modifying class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getInterfaces()">getInterfaces</A></B>()</CODE>
<BR>
Get names of all interfaces implemented by class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getMethod(java.lang.String, java.lang.String)">getMethod</A></B>(java.lang.String name,
java.lang.String sig)</CODE>
<BR>
Get information for method without respect to potential trailing
arguments or return value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getMethod(java.lang.String, java.lang.String[])">getMethod</A></B>(java.lang.String name,
java.lang.String[] sigs)</CODE>
<BR>
Get information for method matching one of several possible signatures.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private org.apache.bcel.classfile.Method[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getMethods()">getMethods</A></B>()</CODE>
<BR>
Get array of methods defined by class or interface.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getName()">getName</A></B>()</CODE>
<BR>
Get fully qualified class name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getPackage()">getPackage</A></B>()</CODE>
<BR>
Get package name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.bcel.classfile.JavaClass</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getRawClass()">getRawClass</A></B>()</CODE>
<BR>
Get raw current class information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getRoot()">getRoot</A></B>()</CODE>
<BR>
Get root directory for load path.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getSignature()">getSignature</A></B>()</CODE>
<BR>
Get signature for class as type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getStaticMethod(java.lang.String, java.lang.String)">getStaticMethod</A></B>(java.lang.String name,
java.lang.String sig)</CODE>
<BR>
Get information for static method without respect to return value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getSuperFile()">getSuperFile</A></B>()</CODE>
<BR>
Get superclass information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getSuperName()">getSuperName</A></B>()</CODE>
<BR>
Get superclass name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.bcel.generic.Type</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getType()">getType</A></B>()</CODE>
<BR>
Get class as type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#getUseCount()">getUseCount</A></B>()</CODE>
<BR>
Get use count for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#hashCode()">hashCode</A></B>()</CODE>
<BR>
Get hash code.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#incrementUseCount()">incrementUseCount</A></B>()</CODE>
<BR>
Increment use count for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#init(java.lang.String, java.lang.String, java.io.InputStream)">init</A></B>(java.lang.String name,
java.lang.String path,
java.io.InputStream ins)</CODE>
<BR>
Internal initialization method.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#initInterface()">initInterface</A></B>()</CODE>
<BR>
Retrieve superinterfaces for an interface class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isAbstract()">isAbstract</A></B>()</CODE>
<BR>
Check if class is abstract.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isAccessible(org.jibx.binding.classes.ClassItem)">isAccessible</A></B>(<A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> item)</CODE>
<BR>
Check accessible method.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isArray()">isArray</A></B>()</CODE>
<BR>
Check if class is an array.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isAssignmentCompatible(org.apache.bcel.generic.Type, org.apache.bcel.generic.Type)">isAssignmentCompatible</A></B>(org.apache.bcel.generic.Type have,
org.apache.bcel.generic.Type need)</CODE>
<BR>
Check if one type is assignment compatible with another type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isComplete()">isComplete</A></B>()</CODE>
<BR>
Check if class is in complete state.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isImplements(java.lang.String)">isImplements</A></B>(java.lang.String sig)</CODE>
<BR>
Check if class implements an interface.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isInterface()">isInterface</A></B>()</CODE>
<BR>
Check if class is an interface.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isModifiable()">isModifiable</A></B>()</CODE>
<BR>
Check if class is modifiable.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isModified()">isModified</A></B>()</CODE>
<BR>
Check if class has been modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isSuffixName(java.lang.String)">isSuffixName</A></B>(java.lang.String name)</CODE>
<BR>
Check if a method name matches the pattern for a generated unique suffix.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#isSuperclass(java.lang.String)">isSuperclass</A></B>(java.lang.String name)</CODE>
<BR>
Check if another class is a superclass of this one.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.Class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#loadClass(java.lang.String)">loadClass</A></B>(java.lang.String name)</CODE>
<BR>
Try loading class from classpath.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#makeUniqueMethodName(java.lang.String)">makeUniqueMethodName</A></B>(java.lang.String name)</CODE>
<BR>
Make method name unique with generated suffix.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#matchAccess(org.apache.bcel.classfile.FieldOrMethod, int)">matchAccess</A></B>(org.apache.bcel.classfile.FieldOrMethod item,
int access)</CODE>
<BR>
Check for match to specified access level.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#removeMethod(org.apache.bcel.classfile.Method)">removeMethod</A></B>(org.apache.bcel.classfile.Method method)</CODE>
<BR>
Remove method from class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#setModified()">setModified</A></B>()</CODE>
<BR>
Set class modified flag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#setPaths(java.lang.String[])">setPaths</A></B>(java.lang.String[] paths)</CODE>
<BR>
Set class paths to be searched.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#setSuperFile(org.jibx.binding.classes.ClassFile)">setSuperFile</A></B>(<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> sclas)</CODE>
<BR>
Set superclass information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#updateField(java.lang.String, java.lang.String, int, java.lang.String)">updateField</A></B>(java.lang.String type,
java.lang.String name,
int access,
java.lang.String init)</CODE>
<BR>
Update class field with initial <code>String</code> value.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#writeFile()">writeFile</A></B>()</CODE>
<BR>
Write out modified class information.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/classes/ClassFile.html#writeFile(java.io.OutputStream)">writeFile</A></B>(java.io.OutputStream os)</CODE>
<BR>
Write out modified class information.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="PRIVATE_ACCESS"><!-- --></A><H3>
PRIVATE_ACCESS</H3>
<PRE>
public static final int <B>PRIVATE_ACCESS</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.classes.ClassFile.PRIVATE_ACCESS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PACKAGE_ACCESS"><!-- --></A><H3>
PACKAGE_ACCESS</H3>
<PRE>
public static final int <B>PACKAGE_ACCESS</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.classes.ClassFile.PACKAGE_ACCESS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PROTECTED_ACCESS"><!-- --></A><H3>
PROTECTED_ACCESS</H3>
<PRE>
public static final int <B>PROTECTED_ACCESS</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.classes.ClassFile.PROTECTED_ACCESS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PUBLIC_ACCESS"><!-- --></A><H3>
PUBLIC_ACCESS</H3>
<PRE>
public static final int <B>PUBLIC_ACCESS</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.classes.ClassFile.PUBLIC_ACCESS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PRIVATEFIELD_ACCESS"><!-- --></A><H3>
PRIVATEFIELD_ACCESS</H3>
<PRE>
protected static final int <B>PRIVATEFIELD_ACCESS</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.classes.ClassFile.PRIVATEFIELD_ACCESS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="EMPTY_METHOD_ARRAY"><!-- --></A><H3>
EMPTY_METHOD_ARRAY</H3>
<PRE>
protected static final <A HREF="../../../../org/jibx/binding/classes/ExistingMethod.html" title="class in org.jibx.binding.classes">ExistingMethod</A>[] <B>EMPTY_METHOD_ARRAY</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="s_loader"><!-- --></A><H3>
s_loader</H3>
<PRE>
private static org.apache.bcel.util.ClassPath <B>s_loader</B></PRE>
<DL>
<DD>Singleton loader from classpath.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="s_directLoader"><!-- --></A><H3>
s_directLoader</H3>
<PRE>
private static java.lang.ClassLoader <B>s_directLoader</B></PRE>
<DL>
<DD>Direct class loader.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_name"><!-- --></A><H3>
m_name</H3>
<PRE>
private java.lang.String <B>m_name</B></PRE>
<DL>
<DD>Fully qualified class name.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_signature"><!-- --></A><H3>
m_signature</H3>
<PRE>
private java.lang.String <B>m_signature</B></PRE>
<DL>
<DD>Signature for class as type.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_type"><!-- --></A><H3>
m_type</H3>
<PRE>
private org.apache.bcel.generic.Type <B>m_type</B></PRE>
<DL>
<DD>Class as type.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_root"><!-- --></A><H3>
m_root</H3>
<PRE>
private java.io.File <B>m_root</B></PRE>
<DL>
<DD>Directory root for class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_file"><!-- --></A><H3>
m_file</H3>
<PRE>
private java.io.File <B>m_file</B></PRE>
<DL>
<DD>Actual class file information.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isSamePackage"><!-- --></A><H3>
m_isSamePackage</H3>
<PRE>
private boolean <B>m_isSamePackage</B></PRE>
<DL>
<DD>Class in same package as superclass flag.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isWritable"><!-- --></A><H3>
m_isWritable</H3>
<PRE>
private boolean <B>m_isWritable</B></PRE>
<DL>
<DD>File is writable flag.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_superClass"><!-- --></A><H3>
m_superClass</H3>
<PRE>
protected <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_superClass</B></PRE>
<DL>
<DD>Super class of this class (set by caller, since it may require
additional information to find the class file).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_interfaceNames"><!-- --></A><H3>
m_interfaceNames</H3>
<PRE>
protected java.lang.String[] <B>m_interfaceNames</B></PRE>
<DL>
<DD>Names of all interfaces directly implemented by this class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_superInterfaces"><!-- --></A><H3>
m_superInterfaces</H3>
<PRE>
private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A>[] <B>m_superInterfaces</B></PRE>
<DL>
<DD>Class files of interfaces extended by interface.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_instanceOfs"><!-- --></A><H3>
m_instanceOfs</H3>
<PRE>
private java.lang.String[] <B>m_instanceOfs</B></PRE>
<DL>
<DD>All classes and interfaces of which this is an instance (lazy create,
only if needed.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_methods"><!-- --></A><H3>
m_methods</H3>
<PRE>
private org.apache.bcel.classfile.Method[] <B>m_methods</B></PRE>
<DL>
<DD>All methods defined by this class or interface (lazy create, only if
needed.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_curClass"><!-- --></A><H3>
m_curClass</H3>
<PRE>
private org.apache.bcel.classfile.JavaClass <B>m_curClass</B></PRE>
<DL>
<DD>Base class information as loaded by BCEL.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_genClass"><!-- --></A><H3>
m_genClass</H3>
<PRE>
private org.apache.bcel.generic.ClassGen <B>m_genClass</B></PRE>
<DL>
<DD>Modified class generator (lazy create, only if needed).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_genPool"><!-- --></A><H3>
m_genPool</H3>
<PRE>
private org.apache.bcel.generic.ConstantPoolGen <B>m_genPool</B></PRE>
<DL>
<DD>Constant pool generator for modified class (lazy create, only if
needed).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_instBuilder"><!-- --></A><H3>
m_instBuilder</H3>
<PRE>
protected <A HREF="../../../../org/jibx/binding/classes/InstructionBuilder.html" title="class in org.jibx.binding.classes">InstructionBuilder</A> <B>m_instBuilder</B></PRE>
<DL>
<DD>Instruction factory for modified class (lazy create, only if needed).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_suffixMap"><!-- --></A><H3>
m_suffixMap</H3>
<PRE>
private java.util.HashMap <B>m_suffixMap</B></PRE>
<DL>
<DD>Map for method names with possibly generated suffixes (lazy create, only
if needed).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_itemMap"><!-- --></A><H3>
m_itemMap</H3>
<PRE>
private java.util.HashMap <B>m_itemMap</B></PRE>
<DL>
<DD>Map to class item information.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isModified"><!-- --></A><H3>
m_isModified</H3>
<PRE>
private boolean <B>m_isModified</B></PRE>
<DL>
<DD>Flag for class modified.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_useCount"><!-- --></A><H3>
m_useCount</H3>
<PRE>
private int <B>m_useCount</B></PRE>
<DL>
<DD>Usage count for this class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isHashCurrent"><!-- --></A><H3>
m_isHashCurrent</H3>
<PRE>
private boolean <B>m_isHashCurrent</B></PRE>
<DL>
<DD>Hash code computation for class is current flag.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_hashCode"><!-- --></A><H3>
m_hashCode</H3>
<PRE>
private int <B>m_hashCode</B></PRE>
<DL>
<DD>Cached hash code value for class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_inheritDepth"><!-- --></A><H3>
m_inheritDepth</H3>
<PRE>
private int <B>m_inheritDepth</B></PRE>
<DL>
<DD>Depth of superclass hierarchy for class (lazy computation).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_uniqueIndex"><!-- --></A><H3>
m_uniqueIndex</H3>
<PRE>
private int <B>m_uniqueIndex</B></PRE>
<DL>
<DD>Suffix number for making method names unique (lazy computation).
<P>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="ClassFile(java.lang.String, java.lang.String, java.io.InputStream)"><!-- --></A><H3>
ClassFile</H3>
<PRE>
public <B>ClassFile</B>(java.lang.String name,
java.lang.String path,
java.io.InputStream ins)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Constructor for class file loaded from a stream. Loads the class data
and prepares it for use.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name<DD><CODE>path</CODE> - class file path<DD><CODE>ins</CODE> - input stream for class file data
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to load class file</DL>
</DL>
<HR>
<A NAME="ClassFile(java.lang.String, java.io.File, java.io.File)"><!-- --></A><H3>
ClassFile</H3>
<PRE>
public <B>ClassFile</B>(java.lang.String name,
java.io.File root,
java.io.File file)
throws java.io.IOException,
<A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Constructor for preexisting class file. Loads the class data and
prepares it for use.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name<DD><CODE>root</CODE> - directory root from class loading path list<DD><CODE>file</CODE> - actual class file
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if unable to open file
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in reading class file</DL>
</DL>
<HR>
<A NAME="ClassFile(java.lang.String)"><!-- --></A><H3>
ClassFile</H3>
<PRE>
public <B>ClassFile</B>(java.lang.String name)
throws java.io.IOException,
<A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Constructor for preexisting class file from classpath. Loads the class
data and prepares it for use.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if unable to open file
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in reading class file</DL>
</DL>
<HR>
<A NAME="ClassFile(java.lang.String, java.lang.String)"><!-- --></A><H3>
ClassFile</H3>
<PRE>
public <B>ClassFile</B>(java.lang.String name,
java.lang.String sig)</PRE>
<DL>
<DD>Constructor for synthetic placeholder classfile with no backing class
data.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name<DD><CODE>sig</CODE> - corresponding class signature</DL>
</DL>
<HR>
<A NAME="ClassFile(java.lang.String, java.io.File, org.jibx.binding.classes.ClassFile, int, java.lang.String[])"><!-- --></A><H3>
ClassFile</H3>
<PRE>
public <B>ClassFile</B>(java.lang.String name,
java.io.File root,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> sclas,
int access,
java.lang.String[] impls)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Constructor for new class file. Initializes the class data and
prepares it for use.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name<DD><CODE>root</CODE> - directory root from class loading path list<DD><CODE>sclas</CODE> - superclass of new class<DD><CODE>access</CODE> - access flags for class<DD><CODE>impls</CODE> - array of interfaces implemented by new class
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on error loading interface information</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="init(java.lang.String, java.lang.String, java.io.InputStream)"><!-- --></A><H3>
init</H3>
<PRE>
private void <B>init</B>(java.lang.String name,
java.lang.String path,
java.io.InputStream ins)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Internal initialization method. This is used to handle common
initialization for the constructors.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified class name<DD><CODE>path</CODE> - class file path<DD><CODE>ins</CODE> - input stream for class file data
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to load class file</DL>
</DD>
</DL>
<HR>
<A NAME="initInterface()"><!-- --></A><H3>
initInterface</H3>
<PRE>
private void <B>initInterface</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Retrieve superinterfaces for an interface class. These are collected at
initialization so that we can support getting the full set of methods
later without worrying about throwing an exception.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on error loading interface information</DL>
</DD>
</DL>
<HR>
<A NAME="isInterface()"><!-- --></A><H3>
isInterface</H3>
<PRE>
public boolean <B>isInterface</B>()</PRE>
<DL>
<DD>Check if class is an interface. This only checks existing classes,
assuming that no generated classes are interfaces.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if an interface, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="isAbstract()"><!-- --></A><H3>
isAbstract</H3>
<PRE>
public boolean <B>isAbstract</B>()</PRE>
<DL>
<DD>Check if class is abstract. This only checks existing classes,
assuming that no generated classes are abstract.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if an abstract class, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="isArray()"><!-- --></A><H3>
isArray</H3>
<PRE>
public boolean <B>isArray</B>()</PRE>
<DL>
<DD>Check if class is an array. This only checks existing classes,
assuming that no generated classes are arrays.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if an array class, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="isModifiable()"><!-- --></A><H3>
isModifiable</H3>
<PRE>
public boolean <B>isModifiable</B>()</PRE>
<DL>
<DD>Check if class is modifiable.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if class is modifiable, <code>false</code> if
not</DL>
</DD>
</DL>
<HR>
<A NAME="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public java.lang.String <B>getName</B>()</PRE>
<DL>
<DD>Get fully qualified class name.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>fully qualified name for class</DL>
</DD>
</DL>
<HR>
<A NAME="getSignature()"><!-- --></A><H3>
getSignature</H3>
<PRE>
public java.lang.String <B>getSignature</B>()</PRE>
<DL>
<DD>Get signature for class as type.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>signature for class used as type</DL>
</DD>
</DL>
<HR>
<A NAME="getType()"><!-- --></A><H3>
getType</H3>
<PRE>
public org.apache.bcel.generic.Type <B>getType</B>()</PRE>
<DL>
<DD>Get class as type.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>class as type</DL>
</DD>
</DL>
<HR>
<A NAME="getPackage()"><!-- --></A><H3>
getPackage</H3>
<PRE>
public java.lang.String <B>getPackage</B>()</PRE>
<DL>
<DD>Get package name.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>package name for class</DL>
</DD>
</DL>
<HR>
<A NAME="getRoot()"><!-- --></A><H3>
getRoot</H3>
<PRE>
public java.io.File <B>getRoot</B>()</PRE>
<DL>
<DD>Get root directory for load path.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>root directory in path used for loading file</DL>
</DD>
</DL>
<HR>
<A NAME="getFile()"><!-- --></A><H3>
getFile</H3>
<PRE>
public java.io.File <B>getFile</B>()</PRE>
<DL>
<DD>Get actual file for class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>file used for class</DL>
</DD>
</DL>
<HR>
<A NAME="getRawClass()"><!-- --></A><H3>
getRawClass</H3>
<PRE>
public org.apache.bcel.classfile.JavaClass <B>getRawClass</B>()</PRE>
<DL>
<DD>Get raw current class information.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>raw current class information</DL>
</DD>
</DL>
<HR>
<A NAME="getSuperName()"><!-- --></A><H3>
getSuperName</H3>
<PRE>
public java.lang.String <B>getSuperName</B>()</PRE>
<DL>
<DD>Get superclass name.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>fully qualified name of superclass</DL>
</DD>
</DL>
<HR>
<A NAME="setSuperFile(org.jibx.binding.classes.ClassFile)"><!-- --></A><H3>
setSuperFile</H3>
<PRE>
public void <B>setSuperFile</B>(<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> sclas)</PRE>
<DL>
<DD>Set superclass information.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sclas</CODE> - superclass information</DL>
</DD>
</DL>
<HR>
<A NAME="getSuperFile()"><!-- --></A><H3>
getSuperFile</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>getSuperFile</B>()</PRE>
<DL>
<DD>Get superclass information.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>super class information as loaded (<code>null</code> if no
superclass - java.lang.Object, interface, or primitive)</DL>
</DD>
</DL>
<HR>
<A NAME="getInterfaces()"><!-- --></A><H3>
getInterfaces</H3>
<PRE>
public java.lang.String[] <B>getInterfaces</B>()</PRE>
<DL>
<DD>Get names of all interfaces implemented by class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>names of all interfaces implemented directly by class</DL>
</DD>
</DL>
<HR>
<A NAME="addInterface(java.lang.String)"><!-- --></A><H3>
addInterface</H3>
<PRE>
public boolean <B>addInterface</B>(java.lang.String intf)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add interface to class. The interface is added to the class if not
already defined.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>intf</CODE> - fully qualified interface name
<DT><B>Returns:</B><DD><code>true</code> if added, <code>false</code> if already present
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="accumulateInterfaces(java.lang.String[], java.util.HashMap, java.util.ArrayList)"><!-- --></A><H3>
accumulateInterfaces</H3>
<PRE>
protected void <B>accumulateInterfaces</B>(java.lang.String[] intfs,
java.util.HashMap map,
java.util.ArrayList accs)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Accumulate interface signatures recursively.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>intfs</CODE> - names of interfaces implemented<DD><CODE>map</CODE> - map for interfaces already accumulated<DD><CODE>accs</CODE> - accumulated interface names
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="getInstanceSigs()"><!-- --></A><H3>
getInstanceSigs</H3>
<PRE>
public java.lang.String[] <B>getInstanceSigs</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get signatures for all types of which instances of this type are
instances.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>all signatures suppored by instances
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="isImplements(java.lang.String)"><!-- --></A><H3>
isImplements</H3>
<PRE>
public boolean <B>isImplements</B>(java.lang.String sig)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Check if class implements an interface.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sig</CODE> - signature of interface to be checked
<DT><B>Returns:</B><DD><code>true</code> if interface is implemented by class,
<code>false</code> if not
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="isSuperclass(java.lang.String)"><!-- --></A><H3>
isSuperclass</H3>
<PRE>
public boolean <B>isSuperclass</B>(java.lang.String name)</PRE>
<DL>
<DD>Check if another class is a superclass of this one.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - of superclass to be checked
<DT><B>Returns:</B><DD><code>true</code> if named class is a superclass of this one,
<code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="getDefinedField(java.lang.String)"><!-- --></A><H3>
getDefinedField</H3>
<PRE>
protected org.apache.bcel.classfile.Field <B>getDefinedField</B>(java.lang.String name)</PRE>
<DL>
<DD>Get internal information for field. This can only be used with
existing classes, and only checks for fields that are actually members
of the class (not superclasses).
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD>field information, or <code>null</code> if field not found</DL>
</DD>
</DL>
<HR>
<A NAME="getAccessibleField(java.lang.String)"><!-- --></A><H3>
getAccessibleField</H3>
<PRE>
protected org.apache.bcel.classfile.Field <B>getAccessibleField</B>(java.lang.String name)</PRE>
<DL>
<DD>Get internal information for field. This can only be used with existing
classes. If the field is not found directly, superclasses are checked for
inherited fields matching the supplied name.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD>field information, or <code>null</code> if field not found</DL>
</DD>
</DL>
<HR>
<A NAME="getDirectField(java.lang.String)"><!-- --></A><H3>
getDirectField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getDirectField</B>(java.lang.String name)</PRE>
<DL>
<DD>Get information for field. This can only be used with existing classes,
and only checks for fields that are actually members of the class (not
superclasses).
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD>field information, or <code>null</code> if field not found</DL>
</DD>
</DL>
<HR>
<A NAME="getField(java.lang.String)"><!-- --></A><H3>
getField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getField</B>(java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get information for field. This can only be used with existing classes.
If the field is not found directly, superclasses are checked for
inherited fields matching the supplied name.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD>field information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if field not found</DL>
</DD>
</DL>
<HR>
<A NAME="getMethods()"><!-- --></A><H3>
getMethods</H3>
<PRE>
private org.apache.bcel.classfile.Method[] <B>getMethods</B>()</PRE>
<DL>
<DD>Get array of methods defined by class or interface. In the case of an
interface, this merges all methods from superinterfaces in the array
returned.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>array of methods defined by class</DL>
</DD>
</DL>
<HR>
<A NAME="getAccessibleMethod(java.lang.String, java.lang.String)"><!-- --></A><H3>
getAccessibleMethod</H3>
<PRE>
protected org.apache.bcel.classfile.Method <B>getAccessibleMethod</B>(java.lang.String name,
java.lang.String sig)</PRE>
<DL>
<DD>Get internal information for method without respect to potential trailing
arguments or return value. This can only be used with existing classes.
If the method is not found directly, superclasses are checked for
inherited methods matching the supplied name. This compares the supplied
partial signature against the actual method signature, and considers it
a match if the actual sigature starts with the supplied signature..
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>sig</CODE> - partial method signature to be matched
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getMethod(java.lang.String, java.lang.String)"><!-- --></A><H3>
getMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getMethod</B>(java.lang.String name,
java.lang.String sig)</PRE>
<DL>
<DD>Get information for method without respect to potential trailing
arguments or return value. This can only be used with existing classes.
If the method is not found directly, superclasses are checked for
inherited methods matching the supplied name. This compares the supplied
partial signature against the actual method signature, and considers it
a match if the actual sigature starts with the supplied signature..
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>sig</CODE> - partial method signature to be matched
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getMethod(java.lang.String, java.lang.String[])"><!-- --></A><H3>
getMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getMethod</B>(java.lang.String name,
java.lang.String[] sigs)</PRE>
<DL>
<DD>Get information for method matching one of several possible signatures.
This can only be used with existing classes. If a match is not found
directly, superclasses are checked for inherited methods matching the
supplied name and signatures. The signature variations are checked in
the order supplied.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>sigs</CODE> - possible signatures for method (including return type)
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="matchAccess(org.apache.bcel.classfile.FieldOrMethod, int)"><!-- --></A><H3>
matchAccess</H3>
<PRE>
private static boolean <B>matchAccess</B>(org.apache.bcel.classfile.FieldOrMethod item,
int access)</PRE>
<DL>
<DD>Check for match to specified access level. This treats a field or method
as matching if the access level is the same as or more open than the
required level.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>item</CODE> - information for field or method to be checked<DD><CODE>access</CODE> - required access level for match
<DT><B>Returns:</B><DD><code>true</code> if access level match, <code>false</code> if
not</DL>
</DD>
</DL>
<HR>
<A NAME="isAssignmentCompatible(org.apache.bcel.generic.Type, org.apache.bcel.generic.Type)"><!-- --></A><H3>
isAssignmentCompatible</H3>
<PRE>
private static boolean <B>isAssignmentCompatible</B>(org.apache.bcel.generic.Type have,
org.apache.bcel.generic.Type need)</PRE>
<DL>
<DD>Check if one type is assignment compatible with another type. This is an
ugly replacement for apparently broken BCEL code.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>have</CODE> - type being checked<DD><CODE>need</CODE> - type needed
<DT><B>Returns:</B><DD><code>true</code> if compatible, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="getBestAccessibleMethod(java.lang.String, int, org.apache.bcel.generic.Type, org.apache.bcel.generic.Type[])"><!-- --></A><H3>
getBestAccessibleMethod</H3>
<PRE>
private org.apache.bcel.classfile.Method <B>getBestAccessibleMethod</B>(java.lang.String name,
int access,
org.apache.bcel.generic.Type ret,
org.apache.bcel.generic.Type[] args)</PRE>
<DL>
<DD>Get information for best matching method. This tries to find a method
which matches the specified name, return type, and argument types. If an
exact match is not found it looks for a method with a return type that
is extended or implemented by the specified type and arguments that are
extended or implemented by the specified types. This can only be used
with existing classes. If the method is not found directly, superclasses
are checked for inherited methods.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>access</CODE> - access level required for matching methods<DD><CODE>ret</CODE> - return value type (<code>null</code> if indeterminant)<DD><CODE>args</CODE> - argument value types
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getBestMethod(java.lang.String, java.lang.String, java.lang.String[])"><!-- --></A><H3>
getBestMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getBestMethod</B>(java.lang.String name,
java.lang.String ret,
java.lang.String[] args)</PRE>
<DL>
<DD>Get information for best matching method. This tries to find a method
which matches the specified name, return type, and argument types. If an
exact match is not found it looks for a method with a return type that
is extended or implemented by the specified type and arguments that are
extended or implemented by the specified types. This can only be used
with existing classes. If the method is not found directly, superclasses
are checked for inherited methods.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>ret</CODE> - return value type (<code>null</code> if indeterminant)<DD><CODE>args</CODE> - argument value types
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getInitializerMethod(java.lang.String)"><!-- --></A><H3>
getInitializerMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getInitializerMethod</B>(java.lang.String sig)</PRE>
<DL>
<DD>Get information for initializer. This can only be used with existing
classes. Only the class itself is checked for an initializer matching
the argument list signature.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sig</CODE> - encoded argument list signature
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getStaticMethod(java.lang.String, java.lang.String)"><!-- --></A><H3>
getStaticMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>getStaticMethod</B>(java.lang.String name,
java.lang.String sig)</PRE>
<DL>
<DD>Get information for static method without respect to return value. This
can only be used with existing classes. Only the class itself is checked
for a method matching the supplied name and argument list signature.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name<DD><CODE>sig</CODE> - encoded argument list signature
<DT><B>Returns:</B><DD>method information, or <code>null</code> if method not found</DL>
</DD>
</DL>
<HR>
<A NAME="getBindingMethods(java.lang.String, java.lang.String[])"><!-- --></A><H3>
getBindingMethods</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ExistingMethod.html" title="class in org.jibx.binding.classes">ExistingMethod</A>[] <B>getBindingMethods</B>(java.lang.String prefix,
java.lang.String[] matches)</PRE>
<DL>
<DD>Get all binding methods currently defined in class. Binding methods are
generally identified by a supplied prefix, but additional methods
can be specified the the combination of exact name and signature. This
is a little kludgy, but necessary to handle the "marshal" method added
to mapped classes.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>prefix</CODE> - identifying prefix for binding methods<DD><CODE>matches</CODE> - pairs of method name and signature to be matched as
exceptions to the prefix matching
<DT><B>Returns:</B><DD>existing binding methods</DL>
</DD>
</DL>
<HR>
<A NAME="isAccessible(org.jibx.binding.classes.ClassItem)"><!-- --></A><H3>
isAccessible</H3>
<PRE>
public boolean <B>isAccessible</B>(<A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> item)</PRE>
<DL>
<DD>Check accessible method. Check if a field or method in another class is
accessible from within this class.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>item</CODE> - field or method information
<DT><B>Returns:</B><DD><code>true</code> if accessible, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="getClassGen()"><!-- --></A><H3>
getClassGen</H3>
<PRE>
private org.apache.bcel.generic.ClassGen <B>getClassGen</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get generator for modifying class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>generator for class
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if class not modifiable</DL>
</DD>
</DL>
<HR>
<A NAME="getConstPoolGen()"><!-- --></A><H3>
getConstPoolGen</H3>
<PRE>
public org.apache.bcel.generic.ConstantPoolGen <B>getConstPoolGen</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get constant pool generator for modifying class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>constant pool generator for class
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if class not modifiable</DL>
</DD>
</DL>
<HR>
<A NAME="getInstructionBuilder()"><!-- --></A><H3>
getInstructionBuilder</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/InstructionBuilder.html" title="class in org.jibx.binding.classes">InstructionBuilder</A> <B>getInstructionBuilder</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get instruction builder for modifying class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>instruction builder for class
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if class not modifiable</DL>
</DD>
</DL>
<HR>
<A NAME="addMethod(org.apache.bcel.classfile.Method)"><!-- --></A><H3>
addMethod</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>addMethod</B>(org.apache.bcel.classfile.Method method)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add method to class.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>method</CODE> - method to be added
<DT><B>Returns:</B><DD>added method information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on error in adding method</DL>
</DD>
</DL>
<HR>
<A NAME="removeMethod(org.apache.bcel.classfile.Method)"><!-- --></A><H3>
removeMethod</H3>
<PRE>
public void <B>removeMethod</B>(org.apache.bcel.classfile.Method method)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Remove method from class.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>method</CODE> - method to be removed
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on error in removing method</DL>
</DD>
</DL>
<HR>
<A NAME="addField(java.lang.String, java.lang.String, int, java.lang.String)"><!-- --></A><H3>
addField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>addField</B>(java.lang.String type,
java.lang.String name,
int access,
java.lang.String init)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add field to class with initial <code>String</code> value. If a field
with the same name already exists, it is overwritten.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>type</CODE> - fully qualified class name of field type<DD><CODE>name</CODE> - field name<DD><CODE>access</CODE> - access flags for field<DD><CODE>init</CODE> - initial value for field
<DT><B>Returns:</B><DD>field information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to add field</DL>
</DD>
</DL>
<HR>
<A NAME="updateField(java.lang.String, java.lang.String, int, java.lang.String)"><!-- --></A><H3>
updateField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>updateField</B>(java.lang.String type,
java.lang.String name,
int access,
java.lang.String init)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Update class field with initial <code>String</code> value. If the field
already exists with the same characteristics it is left unchanged;
otherwise any existing field with the same name is overwritten.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>type</CODE> - fully qualified class name of field type<DD><CODE>name</CODE> - field name<DD><CODE>access</CODE> - access flags for field<DD><CODE>init</CODE> - initial value for field
<DT><B>Returns:</B><DD>field information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to add field</DL>
</DD>
</DL>
<HR>
<A NAME="addField(java.lang.String, java.lang.String, int)"><!-- --></A><H3>
addField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>addField</B>(java.lang.String type,
java.lang.String name,
int access)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add field to class without initialization. If a field with the same name
already exists, it is overwritten.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>type</CODE> - fully qualified class name of field type<DD><CODE>name</CODE> - field name<DD><CODE>access</CODE> - access flags for field
<DT><B>Returns:</B><DD>field information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to add field</DL>
</DD>
</DL>
<HR>
<A NAME="addPrivateField(java.lang.String, java.lang.String)"><!-- --></A><H3>
addPrivateField</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>addPrivateField</B>(java.lang.String type,
java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add private field to class without initialization. If a field
with the same name already exists, it is overwritten.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>type</CODE> - fully qualified class name of field type<DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD>field information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to add field</DL>
</DD>
</DL>
<HR>
<A NAME="addDefaultConstructor()"><!-- --></A><H3>
addDefaultConstructor</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes">ClassItem</A> <B>addDefaultConstructor</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add default constructor to a class. Just calls the default constructor
for the parent class (which must exist).
<P>
<DD><DL>
<DT><B>Returns:</B><DD>constructor information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to add constructor</DL>
</DD>
</DL>
<HR>
<A NAME="isSuffixName(java.lang.String)"><!-- --></A><H3>
isSuffixName</H3>
<PRE>
private static boolean <B>isSuffixName</B>(java.lang.String name)</PRE>
<DL>
<DD>Check if a method name matches the pattern for a generated unique suffix.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - method name to be checked
<DT><B>Returns:</B><DD><code>true</code> if name matches suffix pattern,
<code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="makeUniqueMethodName(java.lang.String)"><!-- --></A><H3>
makeUniqueMethodName</H3>
<PRE>
public java.lang.String <B>makeUniqueMethodName</B>(java.lang.String name)</PRE>
<DL>
<DD>Make method name unique with generated suffix. The suffixed method name
is tracked so that it will not be used again.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - base name before suffix is appended
<DT><B>Returns:</B><DD>name with unique suffix appended</DL>
</DD>
</DL>
<HR>
<A NAME="deleteField(java.lang.String)"><!-- --></A><H3>
deleteField</H3>
<PRE>
public boolean <B>deleteField</B>(java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Delete field from class.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - field name
<DT><B>Returns:</B><DD><code>true</code> if field was present, <code>false</code> if not
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if unable to delete field</DL>
</DD>
</DL>
<HR>
<A NAME="getUseCount()"><!-- --></A><H3>
getUseCount</H3>
<PRE>
public int <B>getUseCount</B>()</PRE>
<DL>
<DD>Get use count for class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>use count for this class</DL>
</DD>
</DL>
<HR>
<A NAME="incrementUseCount()"><!-- --></A><H3>
incrementUseCount</H3>
<PRE>
public int <B>incrementUseCount</B>()</PRE>
<DL>
<DD>Increment use count for class.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>use count (after increment)</DL>
</DD>
</DL>
<HR>
<A NAME="isModified()"><!-- --></A><H3>
isModified</H3>
<PRE>
public boolean <B>isModified</B>()</PRE>
<DL>
<DD>Check if class has been modified.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if class is modified, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="setModified()"><!-- --></A><H3>
setModified</H3>
<PRE>
public void <B>setModified</B>()</PRE>
<DL>
<DD>Set class modified flag.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="isComplete()"><!-- --></A><H3>
isComplete</H3>
<PRE>
public boolean <B>isComplete</B>()</PRE>
<DL>
<DD>Check if class is in complete state.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if class is complete, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="computeHashCode()"><!-- --></A><H3>
computeHashCode</H3>
<PRE>
protected int <B>computeHashCode</B>()</PRE>
<DL>
<DD>Computes a hash code based on characteristics of the class. The
characteristics used in computing the hash code include the base class,
implemented interfaces, method names, field names, and package, but not
the actual class name or signature. The current static version of the
class is used for this computation, so if the class is being modified
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html#codeComplete()"><CODE>codeComplete()</CODE></A> should be called before this method. Note that this
is designed for use with the classes generated by JiBX, and is not
necessarily a good model for general usage.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>computed hash code value</DL>
</DD>
</DL>
<HR>
<A NAME="codeComplete()"><!-- --></A><H3>
codeComplete</H3>
<PRE>
public void <B>codeComplete</B>()</PRE>
<DL>
<DD>Finalize current modified state of class. This converts the modified
class state into a static form, then computes a hash code based on
characteristics of the class. If the class has not been modified it
just computes the hash code. Note that this won't initialize the array
of superinterfaces if used with an interface, but that shouldn't be a
problem since we don't create any interfaces.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="hashCode()"><!-- --></A><H3>
hashCode</H3>
<PRE>
public int <B>hashCode</B>()</PRE>
<DL>
<DD>Get hash code. This is based on most characteristics of the class,
including the actual methods, but excluding the class name. It is only
valid after the <A HREF="../../../../org/jibx/binding/classes/ClassFile.html#codeComplete()"><CODE>codeComplete()</CODE></A> method is called.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>hashCode</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>hash code based on code sequence</DL>
</DD>
</DL>
<HR>
<A NAME="equalFieldOrMethods(org.apache.bcel.classfile.FieldOrMethod, org.apache.bcel.classfile.FieldOrMethod)"><!-- --></A><H3>
equalFieldOrMethods</H3>
<PRE>
public static boolean <B>equalFieldOrMethods</B>(org.apache.bcel.classfile.FieldOrMethod a,
org.apache.bcel.classfile.FieldOrMethod b)</PRE>
<DL>
<DD>Compare two field or method items to see if they're equal. This handles
only the comparisons that apply to both fields and methods. It does not
include comparing access flags, since these may be different due to
access requirements.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>a</CODE> - first field or method item<DD><CODE>b</CODE> - second field or method item
<DT><B>Returns:</B><DD><code>true</code> if the equal, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="equalMethods(org.apache.bcel.classfile.Method, org.apache.bcel.classfile.Method)"><!-- --></A><H3>
equalMethods</H3>
<PRE>
public static boolean <B>equalMethods</B>(org.apache.bcel.classfile.Method a,
org.apache.bcel.classfile.Method b)</PRE>
<DL>
<DD>Compare two methods to see if they're equal. This checks only the details
of the exception handling and actual code, not the name or signature.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>a</CODE> - first method<DD><CODE>b</CODE> - second method
<DT><B>Returns:</B><DD><code>true</code> if the equal, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="equals(java.lang.Object)"><!-- --></A><H3>
equals</H3>
<PRE>
public boolean <B>equals</B>(java.lang.Object obj)</PRE>
<DL>
<DD>Check if objects are equal. Compares first based on hash code, then on
the actual contents of the class, including package, implemented
interfaces, superclass, methods, and fields (but not the actual class
name). It is only valid after the <A HREF="../../../../org/jibx/binding/classes/ClassFile.html#codeComplete()"><CODE>codeComplete()</CODE></A> method is called.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>equals</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if equal objects, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="delete()"><!-- --></A><H3>
delete</H3>
<PRE>
public void <B>delete</B>()</PRE>
<DL>
<DD>Delete class file information. Deletes the class file for this class,
if it exists. Does nothing if no class file has been generated.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="writeFile(java.io.OutputStream)"><!-- --></A><H3>
writeFile</H3>
<PRE>
public void <B>writeFile</B>(java.io.OutputStream os)
throws java.io.IOException</PRE>
<DL>
<DD>Write out modified class information. Writes the modified class file to
an output stream.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>os</CODE> - output stream for writing modified class
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if error writing to file</DL>
</DD>
</DL>
<HR>
<A NAME="writeFile()"><!-- --></A><H3>
writeFile</H3>
<PRE>
public void <B>writeFile</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Write out modified class information. Writes the modified class file
back out to the original file. If the class file has not been modified,
the original file is kept unchanged.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if error writing to file</DL>
</DD>
</DL>
<HR>
<A NAME="deriveClassName(java.lang.String, java.lang.String)"><!-- --></A><H3>
deriveClassName</H3>
<PRE>
public java.lang.String <B>deriveClassName</B>(java.lang.String prefix,
java.lang.String suffix)</PRE>
<DL>
<DD>Derive generated class name. This generates a JiBX class name from the
name of this class, using the supplied prefix and suffix information. The
derived class name is always in the same package as this class.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>prefix</CODE> - generated class name prefix<DD><CODE>suffix</CODE> - generated class name suffix
<DT><B>Returns:</B><DD>derived class name</DL>
</DD>
</DL>
<HR>
<A NAME="setPaths(java.lang.String[])"><!-- --></A><H3>
setPaths</H3>
<PRE>
public static void <B>setPaths</B>(java.lang.String[] paths)</PRE>
<DL>
<DD>Set class paths to be searched.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>paths</CODE> - ordered set of paths to be searched for class files</DL>
</DD>
</DL>
<HR>
<A NAME="loadClass(java.lang.String)"><!-- --></A><H3>
loadClass</H3>
<PRE>
public static java.lang.Class <B>loadClass</B>(java.lang.String name)</PRE>
<DL>
<DD>Try loading class from classpath.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - fully qualified name of class to be loaded
<DT><B>Returns:</B><DD>loaded class, or <code>null</code> if not found</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/jibx/binding/classes/ClassCache.html" title="class in org.jibx.binding.classes"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/binding/classes/ClassItem.html" title="class in org.jibx.binding.classes"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/binding/classes/ClassFile.html" target="_top"><B>FRAMES</B></A>
<A HREF="ClassFile.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<table width='80%%'><tr><td width='50%%'><p align='center'><a href='http://www.jibx.org/' target='_top'><font size='3'><b>Project Web Site</b></font></a></td><td width='50%%'><p align='center'></td></tr></table>
</BODY>
</HTML>
|