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
|
<!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:23 CET 2008 -->
<TITLE>
MarshallingContext (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="MarshallingContext (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/runtime/impl/ITrackSourceImpl.html" title="interface in org.jibx.runtime.impl"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/runtime/impl/SparseArrayIterator.html" title="class in org.jibx.runtime.impl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/runtime/impl/MarshallingContext.html" target="_top"><B>FRAMES</B></A>
<A HREF="MarshallingContext.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.runtime.impl</FONT>
<BR>
Class MarshallingContext</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.jibx.runtime.impl.MarshallingContext</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>MarshallingContext</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></DL>
</PRE>
<P>
JiBX serializer supplying convenience methods for marshalling. Most of these
methods are designed for use in code generated by the binding generator.
<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>private static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#INITIAL_STACK_SIZE">INITIAL_STACK_SIZE</A></B></CODE>
<BR>
Starting size for object stack.</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/runtime/impl/MarshallingContext.html#m_classes">m_classes</A></B></CODE>
<BR>
Names of classes included in mapping definition.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#m_factory">m_factory</A></B></CODE>
<BR>
Binding factory used to create this unmarshaller.</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/runtime/impl/MarshallingContext.html#m_globalCount">m_globalCount</A></B></CODE>
<BR>
Number of classes with global marshallers.</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/runtime/impl/MarshallingContext.html#m_idMap">m_idMap</A></B></CODE>
<BR>
Shared map from IDs to objects.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private char</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#m_indentChar">m_indentChar</A></B></CODE>
<BR>
Character used for indenting.</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/runtime/impl/MarshallingContext.html#m_indentCount">m_indentCount</A></B></CODE>
<BR>
Indent character count per level.</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/runtime/impl/MarshallingContext.html#m_marshallerClasses">m_marshallerClasses</A></B></CODE>
<BR>
Marshaller classes for mapping definition (<code>null</code> for
mappings out of context).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/runtime/IMarshaller.html" title="interface in org.jibx.runtime">IMarshaller</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#m_marshallers">m_marshallers</A></B></CODE>
<BR>
Marshallers for classes in mapping definition (lazy create of actual
marshaller instances)</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/runtime/impl/MarshallingContext.html#m_newLine">m_newLine</A></B></CODE>
<BR>
Character sequence for end of line.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.Object[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#m_objectStack">m_objectStack</A></B></CODE>
<BR>
Stack of objects being marshalled.</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/runtime/impl/MarshallingContext.html#m_stackDepth">m_stackDepth</A></B></CODE>
<BR>
Current marshalling stack depth.</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/runtime/impl/MarshallingContext.html#m_uris">m_uris</A></B></CODE>
<BR>
URIs for namespaces used in binding.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#m_writer">m_writer</A></B></CODE>
<BR>
Output document handler.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#XML_NAMESPACE">XML_NAMESPACE</A></B></CODE>
<BR>
Fixed XML namespace.</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/runtime/impl/MarshallingContext.html#MarshallingContext(java.lang.String[], java.lang.String[], java.lang.String[], org.jibx.runtime.IBindingFactory)">MarshallingContext</A></B>(java.lang.String[] classes,
java.lang.String[] mcs,
java.lang.String[] uris,
<A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A> ifact)</CODE>
<BR>
Constructor.</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> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#addMarshalling(int, java.lang.String)">addMarshalling</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Define marshalling for class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#attribute(int, java.lang.String, int)">attribute</A></B>(int index,
java.lang.String name,
int value)</CODE>
<BR>
Generate integer attribute.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#attribute(int, java.lang.String, int, java.lang.String[])">attribute</A></B>(int index,
java.lang.String name,
int value,
java.lang.String[] table)</CODE>
<BR>
Generate enumeration attribute.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#attribute(int, java.lang.String, java.lang.String)">attribute</A></B>(int index,
java.lang.String name,
java.lang.String value)</CODE>
<BR>
Generate text attribute.</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/runtime/impl/MarshallingContext.html#buildNameString(int, java.lang.String)">buildNameString</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Build name with optional namespace.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#closeStartContent()">closeStartContent</A></B>()</CODE>
<BR>
Close start tag with content to follow.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#closeStartEmpty()">closeStartEmpty</A></B>()</CODE>
<BR>
Close start tag with no content (empty tag).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#content(int)">content</A></B>(int value)</CODE>
<BR>
Add integer content to current element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#content(int, java.lang.String[])">content</A></B>(int value,
java.lang.String[] table)</CODE>
<BR>
Add enumeration content to current element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#content(java.lang.String)">content</A></B>(java.lang.String value)</CODE>
<BR>
Add text content to current element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#createEscaper(java.lang.String)">createEscaper</A></B>(java.lang.String enc)</CODE>
<BR>
Create character escaper for encoding.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#element(int, java.lang.String, int)">element</A></B>(int index,
java.lang.String name,
int value)</CODE>
<BR>
Generate complete element with integer content.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#element(int, java.lang.String, int, java.lang.String[])">element</A></B>(int index,
java.lang.String name,
int value,
java.lang.String[] table)</CODE>
<BR>
Generate complete element with enumeration content.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#element(int, java.lang.String, java.lang.String)">element</A></B>(int index,
java.lang.String name,
java.lang.String value)</CODE>
<BR>
Generate complete element with text content.</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/runtime/impl/MarshallingContext.html#endDocument()">endDocument</A></B>()</CODE>
<BR>
End document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#endTag(int, java.lang.String)">endTag</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Generate end tag for element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getFactory()">getFactory</A></B>()</CODE>
<BR>
Return the binding factory used to create this unmarshaller.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getIdMap()">getIdMap</A></B>()</CODE>
<BR>
Get shared ID map.</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/runtime/impl/MarshallingContext.html#getIndent()">getIndent</A></B>()</CODE>
<BR>
Get current nesting indent spaces.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/IMarshaller.html" title="interface in org.jibx.runtime">IMarshaller</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getMarshaller(int, java.lang.String)">getMarshaller</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Find the marshaller for a particular class index
in the current context.</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/runtime/impl/MarshallingContext.html#getNamespaces()">getNamespaces</A></B>()</CODE>
<BR>
Get namespace URIs for mapping.</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/runtime/impl/MarshallingContext.html#getStackDepth()">getStackDepth</A></B>()</CODE>
<BR>
Get current marshalling object stack depth.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getStackObject(int)">getStackObject</A></B>(int depth)</CODE>
<BR>
Get object from marshalling stack.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getStackTop()">getStackTop</A></B>()</CODE>
<BR>
Get top object on marshalling stack.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#getXmlWriter()">getXmlWriter</A></B>()</CODE>
<BR>
Get the writer being used for output.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#marshalCollection(java.util.ArrayList)">marshalCollection</A></B>(java.util.ArrayList col)</CODE>
<BR>
Marshal all items in a collection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#marshalCollection(java.util.Collection)">marshalCollection</A></B>(java.util.Collection col)</CODE>
<BR>
Marshal all items in a collection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#marshalCollection(java.util.Vector)">marshalCollection</A></B>(java.util.Vector col)</CODE>
<BR>
Marshal all items in a collection.</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/runtime/impl/MarshallingContext.html#marshalDocument(java.lang.Object)">marshalDocument</A></B>(java.lang.Object root)</CODE>
<BR>
Marshal document from root object without XML declaration.</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/runtime/impl/MarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean)">marshalDocument</A></B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone)</CODE>
<BR>
Marshal document from root object.</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/runtime/impl/MarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.OutputStream)">marshalDocument</A></B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone,
java.io.OutputStream outs)</CODE>
<BR>
Marshal document from root object to output stream with encoding.</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/runtime/impl/MarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.Writer)">marshalDocument</A></B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone,
java.io.Writer outw)</CODE>
<BR>
Marshal document from root object to writer.</TD>
</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/runtime/impl/MarshallingContext.html#marshalRoot(java.lang.Object)">marshalRoot</A></B>(java.lang.Object root)</CODE>
<BR>
Marshal document from root object.</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/runtime/impl/MarshallingContext.html#popObject()">popObject</A></B>()</CODE>
<BR>
Pop marshalled object from stack.</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/runtime/impl/MarshallingContext.html#pushObject(java.lang.Object)">pushObject</A></B>(java.lang.Object obj)</CODE>
<BR>
Push created object to marshalling stack.</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/runtime/impl/MarshallingContext.html#removeMarshalling(int)">removeMarshalling</A></B>(int index)</CODE>
<BR>
Undefine marshalling for element.</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/runtime/impl/MarshallingContext.html#reset()">reset</A></B>()</CODE>
<BR>
Reset to initial state for reuse.</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/runtime/impl/MarshallingContext.html#setFromContext(org.jibx.runtime.impl.MarshallingContext)">setFromContext</A></B>(<A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> parent)</CODE>
<BR>
Initializes the context to use the same marshalled text destination and
parameters as another marshalling context.</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/runtime/impl/MarshallingContext.html#setIndent(int)">setIndent</A></B>(int count)</CODE>
<BR>
Set nesting indent spaces.</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/runtime/impl/MarshallingContext.html#setIndent(int, java.lang.String, char)">setIndent</A></B>(int count,
java.lang.String newline,
char indent)</CODE>
<BR>
Set nesting indentation.</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/runtime/impl/MarshallingContext.html#setOutput(java.io.OutputStream, java.lang.String)">setOutput</A></B>(java.io.OutputStream outs,
java.lang.String enc)</CODE>
<BR>
Set output stream and encoding.</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/runtime/impl/MarshallingContext.html#setOutput(java.io.OutputStream, java.lang.String, org.jibx.runtime.ICharacterEscaper)">setOutput</A></B>(java.io.OutputStream outs,
java.lang.String enc,
<A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A> esc)</CODE>
<BR>
Set output stream with encoding and escaper.</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/runtime/impl/MarshallingContext.html#setOutput(java.io.Writer)">setOutput</A></B>(java.io.Writer outw)</CODE>
<BR>
Set output writer.</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/runtime/impl/MarshallingContext.html#setOutput(java.io.Writer, org.jibx.runtime.ICharacterEscaper)">setOutput</A></B>(java.io.Writer outw,
<A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A> esc)</CODE>
<BR>
Set output writer and escaper.</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/runtime/impl/MarshallingContext.html#setXmlWriter(org.jibx.runtime.IXMLWriter)">setXmlWriter</A></B>(<A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A> xwrite)</CODE>
<BR>
Set the writer being used for output.</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/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean)">startDocument</A></B>(java.lang.String enc,
java.lang.Boolean alone)</CODE>
<BR>
Start document.</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/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean, java.io.OutputStream)">startDocument</A></B>(java.lang.String enc,
java.lang.Boolean alone,
java.io.OutputStream outs)</CODE>
<BR>
Start document with output stream and encoding.</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/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean, java.io.Writer)">startDocument</A></B>(java.lang.String enc,
java.lang.Boolean alone,
java.io.Writer outw)</CODE>
<BR>
Start document with writer.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startTag(int, java.lang.String)">startTag</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Generate start tag for element without attributes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startTagAttributes(int, java.lang.String)">startTagAttributes</A></B>(int index,
java.lang.String name)</CODE>
<BR>
Generate start tag for element with attributes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startTagNamespaces(int, java.lang.String, int[], java.lang.String[])">startTagNamespaces</A></B>(int index,
java.lang.String name,
int[] nums,
java.lang.String[] prefs)</CODE>
<BR>
Generate start tag for element with namespaces.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#writeCData(java.lang.String)">writeCData</A></B>(java.lang.String text)</CODE>
<BR>
Write CDATA text to document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#writeContent(java.lang.String)">writeContent</A></B>(java.lang.String text)</CODE>
<BR>
Write content value with character entity substitutions.</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, equals, finalize, getClass, hashCode, 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="XML_NAMESPACE"><!-- --></A><H3>
XML_NAMESPACE</H3>
<PRE>
public static final java.lang.String <B>XML_NAMESPACE</B></PRE>
<DL>
<DD>Fixed XML namespace.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.runtime.impl.MarshallingContext.XML_NAMESPACE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="INITIAL_STACK_SIZE"><!-- --></A><H3>
INITIAL_STACK_SIZE</H3>
<PRE>
private static final int <B>INITIAL_STACK_SIZE</B></PRE>
<DL>
<DD>Starting size for object stack.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.runtime.impl.MarshallingContext.INITIAL_STACK_SIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="m_factory"><!-- --></A><H3>
m_factory</H3>
<PRE>
private <A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A> <B>m_factory</B></PRE>
<DL>
<DD>Binding factory used to create this unmarshaller.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_classes"><!-- --></A><H3>
m_classes</H3>
<PRE>
private java.lang.String[] <B>m_classes</B></PRE>
<DL>
<DD>Names of classes included in mapping definition.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_globalCount"><!-- --></A><H3>
m_globalCount</H3>
<PRE>
private int <B>m_globalCount</B></PRE>
<DL>
<DD>Number of classes with global marshallers.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_marshallerClasses"><!-- --></A><H3>
m_marshallerClasses</H3>
<PRE>
private java.lang.String[] <B>m_marshallerClasses</B></PRE>
<DL>
<DD>Marshaller classes for mapping definition (<code>null</code> for
mappings out of context).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_marshallers"><!-- --></A><H3>
m_marshallers</H3>
<PRE>
private <A HREF="../../../../org/jibx/runtime/IMarshaller.html" title="interface in org.jibx.runtime">IMarshaller</A>[] <B>m_marshallers</B></PRE>
<DL>
<DD>Marshallers for classes in mapping definition (lazy create of actual
marshaller instances)
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_uris"><!-- --></A><H3>
m_uris</H3>
<PRE>
private java.lang.String[] <B>m_uris</B></PRE>
<DL>
<DD>URIs for namespaces used in binding.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_stackDepth"><!-- --></A><H3>
m_stackDepth</H3>
<PRE>
private int <B>m_stackDepth</B></PRE>
<DL>
<DD>Current marshalling stack depth.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_objectStack"><!-- --></A><H3>
m_objectStack</H3>
<PRE>
private java.lang.Object[] <B>m_objectStack</B></PRE>
<DL>
<DD>Stack of objects being marshalled.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_indentCount"><!-- --></A><H3>
m_indentCount</H3>
<PRE>
private int <B>m_indentCount</B></PRE>
<DL>
<DD>Indent character count per level.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_newLine"><!-- --></A><H3>
m_newLine</H3>
<PRE>
private java.lang.String <B>m_newLine</B></PRE>
<DL>
<DD>Character sequence for end of line.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_indentChar"><!-- --></A><H3>
m_indentChar</H3>
<PRE>
private char <B>m_indentChar</B></PRE>
<DL>
<DD>Character used for indenting.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_idMap"><!-- --></A><H3>
m_idMap</H3>
<PRE>
private java.util.HashMap <B>m_idMap</B></PRE>
<DL>
<DD>Shared map from IDs to objects. This is not used directly by the
marshalling code, but is available for user extensions (lazy create).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_writer"><!-- --></A><H3>
m_writer</H3>
<PRE>
private <A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A> <B>m_writer</B></PRE>
<DL>
<DD>Output document handler.
<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="MarshallingContext(java.lang.String[], java.lang.String[], java.lang.String[], org.jibx.runtime.IBindingFactory)"><!-- --></A><H3>
MarshallingContext</H3>
<PRE>
public <B>MarshallingContext</B>(java.lang.String[] classes,
java.lang.String[] mcs,
java.lang.String[] uris,
<A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A> ifact)</PRE>
<DL>
<DD>Constructor.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>classes</CODE> - ordered array of class names included in mapping
definition (reference kept, must be constant)<DD><CODE>mcs</CODE> - names of marshaller classes for indexes with fixed marshallers
(as opposed to mapping slots, which may be overridden; reference kept,
must be constant)<DD><CODE>uris</CODE> - ordered array of URIs for namespaces used in binding (must
be constant; the value in position 0 must always be the empty string "",
and the value in position 1 must always be the XML namespace
"http://www.w3.org/XML/1998/namespace")<DD><CODE>ifact</CODE> - binding factory creating this unmarshaller</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="createEscaper(java.lang.String)"><!-- --></A><H3>
createEscaper</H3>
<PRE>
private <A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A> <B>createEscaper</B>(java.lang.String enc)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Create character escaper for encoding.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>enc</CODE> - document output encoding, or <code>null</code> for default
<DT><B>Returns:</B><DD>character escaper for encoding
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error creating setting output</DL>
</DD>
</DL>
<HR>
<A NAME="setOutput(java.io.OutputStream, java.lang.String, org.jibx.runtime.ICharacterEscaper)"><!-- --></A><H3>
setOutput</H3>
<PRE>
public void <B>setOutput</B>(java.io.OutputStream outs,
java.lang.String enc,
<A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A> esc)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Set output stream with encoding and escaper. This forces handling of the
output stream to use the Java character encoding support with the
supplied escaper.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setOutput(java.io.OutputStream, java.lang.String, org.jibx.runtime.ICharacterEscaper)">setOutput</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>outs</CODE> - stream for document data output<DD><CODE>enc</CODE> - document output encoding, or <code>null</code> uses UTF-8
default<DD><CODE>esc</CODE> - escaper for writing characters to stream
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error setting output</DL>
</DD>
</DL>
<HR>
<A NAME="setOutput(java.io.OutputStream, java.lang.String)"><!-- --></A><H3>
setOutput</H3>
<PRE>
public void <B>setOutput</B>(java.io.OutputStream outs,
java.lang.String enc)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Set output stream and encoding.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setOutput(java.io.OutputStream, java.lang.String)">setOutput</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>outs</CODE> - stream for document data output<DD><CODE>enc</CODE> - document output encoding, or <code>null</code> for default
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error creating setting output</DL>
</DD>
</DL>
<HR>
<A NAME="setOutput(java.io.Writer, org.jibx.runtime.ICharacterEscaper)"><!-- --></A><H3>
setOutput</H3>
<PRE>
public void <B>setOutput</B>(java.io.Writer outw,
<A HREF="../../../../org/jibx/runtime/ICharacterEscaper.html" title="interface in org.jibx.runtime">ICharacterEscaper</A> esc)</PRE>
<DL>
<DD>Set output writer and escaper.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setOutput(java.io.Writer, org.jibx.runtime.ICharacterEscaper)">setOutput</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>outw</CODE> - writer for document data output<DD><CODE>esc</CODE> - escaper for writing characters</DL>
</DD>
</DL>
<HR>
<A NAME="setOutput(java.io.Writer)"><!-- --></A><H3>
setOutput</H3>
<PRE>
public void <B>setOutput</B>(java.io.Writer outw)</PRE>
<DL>
<DD>Set output writer.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setOutput(java.io.Writer)">setOutput</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>outw</CODE> - writer for document data output</DL>
</DD>
</DL>
<HR>
<A NAME="getXmlWriter()"><!-- --></A><H3>
getXmlWriter</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A> <B>getXmlWriter</B>()</PRE>
<DL>
<DD>Get the writer being used for output.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getXmlWriter()">getXmlWriter</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>XML writer used for output</DL>
</DD>
</DL>
<HR>
<A NAME="setXmlWriter(org.jibx.runtime.IXMLWriter)"><!-- --></A><H3>
setXmlWriter</H3>
<PRE>
public void <B>setXmlWriter</B>(<A HREF="../../../../org/jibx/runtime/IXMLWriter.html" title="interface in org.jibx.runtime">IXMLWriter</A> xwrite)</PRE>
<DL>
<DD>Set the writer being used for output.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setXmlWriter(org.jibx.runtime.IXMLWriter)">setXmlWriter</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>xwrite</CODE> - XML writer used for output</DL>
</DD>
</DL>
<HR>
<A NAME="getIndent()"><!-- --></A><H3>
getIndent</H3>
<PRE>
public int <B>getIndent</B>()</PRE>
<DL>
<DD>Get current nesting indent spaces. This returns the number of spaces used
to show indenting, if used.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getIndent()">getIndent</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>number of spaces indented per level, or negative if indentation
disabled</DL>
</DD>
</DL>
<HR>
<A NAME="setIndent(int)"><!-- --></A><H3>
setIndent</H3>
<PRE>
public void <B>setIndent</B>(int count)</PRE>
<DL>
<DD>Set nesting indent spaces. This is advisory only, and implementations of
this interface are free to ignore it. The intent is to indicate that the
generated output should use indenting to illustrate element nesting.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setIndent(int)">setIndent</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>count</CODE> - number of spaces to indent per level, or disable
indentation if negative</DL>
</DD>
</DL>
<HR>
<A NAME="setIndent(int, java.lang.String, char)"><!-- --></A><H3>
setIndent</H3>
<PRE>
public void <B>setIndent</B>(int count,
java.lang.String newline,
char indent)</PRE>
<DL>
<DD>Set nesting indentation. This is advisory only, and implementations of
this interface are free to ignore it. The intent is to indicate that the
generated output should use indenting to illustrate element nesting.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#setIndent(int, java.lang.String, char)">setIndent</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>count</CODE> - number of character to indent per level, or disable
indentation if negative (zero means new line only)<DD><CODE>newline</CODE> - sequence of characters used for a line ending
(<code>null</code> means use the single character '\n')<DD><CODE>indent</CODE> - whitespace character used for indentation</DL>
</DD>
</DL>
<HR>
<A NAME="setFromContext(org.jibx.runtime.impl.MarshallingContext)"><!-- --></A><H3>
setFromContext</H3>
<PRE>
public void <B>setFromContext</B>(<A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> parent)</PRE>
<DL>
<DD>Initializes the context to use the same marshalled text destination and
parameters as another marshalling context. This method is designed for
use when an initial context needs to create and invoke a secondary
context (generally from a different binding) in the course of an
marshalling operation.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>parent</CODE> - context supplying target for marshalled document text</DL>
</DD>
</DL>
<HR>
<A NAME="reset()"><!-- --></A><H3>
reset</H3>
<PRE>
public void <B>reset</B>()</PRE>
<DL>
<DD>Reset to initial state for reuse. The context is serially reusable,
as long as this method is called to clear any retained state information
between uses. It is automatically called when output is set.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#reset()">reset</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getFactory()"><!-- --></A><H3>
getFactory</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/IBindingFactory.html" title="interface in org.jibx.runtime">IBindingFactory</A> <B>getFactory</B>()</PRE>
<DL>
<DD>Return the binding factory used to create this unmarshaller.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>binding factory</DL>
</DD>
</DL>
<HR>
<A NAME="getNamespaces()"><!-- --></A><H3>
getNamespaces</H3>
<PRE>
public java.lang.String[] <B>getNamespaces</B>()</PRE>
<DL>
<DD>Get namespace URIs for mapping. This gets the full ordered array of
namespaces known in the binding used for this marshalling, where the
index number of each namespace URI is the namespace index used to lookup
the prefix when marshalling a name in that namespace. The returned array
must not be modified.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>array of namespaces</DL>
</DD>
</DL>
<HR>
<A NAME="startDocument(java.lang.String, java.lang.Boolean)"><!-- --></A><H3>
startDocument</H3>
<PRE>
public void <B>startDocument</B>(java.lang.String enc,
java.lang.Boolean alone)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Start document. This can only be validly called immediately following
one of the set output methods; otherwise the output document will be
corrupt.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean)">startDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="startDocument(java.lang.String, java.lang.Boolean, java.io.OutputStream)"><!-- --></A><H3>
startDocument</H3>
<PRE>
public void <B>startDocument</B>(java.lang.String enc,
java.lang.Boolean alone,
java.io.OutputStream outs)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Start document with output stream and encoding. The effect is the same
as from first setting the output stream and encoding, then making the
call to start document.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean, java.io.OutputStream)">startDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified<DD><CODE>outs</CODE> - stream for document data output
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="startDocument(java.lang.String, java.lang.Boolean, java.io.Writer)"><!-- --></A><H3>
startDocument</H3>
<PRE>
public void <B>startDocument</B>(java.lang.String enc,
java.lang.Boolean alone,
java.io.Writer outw)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Start document with writer. The effect is the same as from first
setting the writer, then making the call to start document.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean, java.io.Writer)">startDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified<DD><CODE>outw</CODE> - writer for document data output
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="endDocument()"><!-- --></A><H3>
endDocument</H3>
<PRE>
public void <B>endDocument</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>End document. Finishes all output and closes the document. Note that if
this is called with an imcomplete marshalling the result will not be
well-formed XML.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#endDocument()">endDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<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 any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="buildNameString(int, java.lang.String)"><!-- --></A><H3>
buildNameString</H3>
<PRE>
public java.lang.String <B>buildNameString</B>(int index,
java.lang.String name)</PRE>
<DL>
<DD>Build name with optional namespace. Just returns the appropriate
name format.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - local name part of name
<DT><B>Returns:</B><DD>formatted name string</DL>
</DD>
</DL>
<HR>
<A NAME="startTag(int, java.lang.String)"><!-- --></A><H3>
startTag</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>startTag</B>(int index,
java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate start tag for element without attributes.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="startTagAttributes(int, java.lang.String)"><!-- --></A><H3>
startTagAttributes</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>startTagAttributes</B>(int index,
java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate start tag for element with attributes. This only opens the start
tag, allowing attributes to be added immediately following this call.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="attribute(int, java.lang.String, java.lang.String)"><!-- --></A><H3>
attribute</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>attribute</B>(int index,
java.lang.String name,
java.lang.String value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate text attribute. This can only be used following an open start
tag with attributes.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - attribute name<DD><CODE>value</CODE> - text value for attribute (cannot be <code>null</code>)
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="attribute(int, java.lang.String, int)"><!-- --></A><H3>
attribute</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>attribute</B>(int index,
java.lang.String name,
int value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate integer attribute. This can only be used following an open start
tag.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - attribute name<DD><CODE>value</CODE> - integer value for attribute
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="attribute(int, java.lang.String, int, java.lang.String[])"><!-- --></A><H3>
attribute</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>attribute</B>(int index,
java.lang.String name,
int value,
java.lang.String[] table)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate enumeration attribute. The actual text to be written is obtained
by indexing into the supplied array of values. This can only be used
following an open start tag.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - attribute name<DD><CODE>value</CODE> - integer enumeration value (zero-based)<DD><CODE>table</CODE> - text values in enumeration
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="closeStartContent()"><!-- --></A><H3>
closeStartContent</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>closeStartContent</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Close start tag with content to follow.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="closeStartEmpty()"><!-- --></A><H3>
closeStartEmpty</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>closeStartEmpty</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Close start tag with no content (empty tag).
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="content(java.lang.String)"><!-- --></A><H3>
content</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>content</B>(java.lang.String value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add text content to current element.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>value</CODE> - text element content
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="content(int)"><!-- --></A><H3>
content</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>content</B>(int value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add integer content to current element.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>value</CODE> - integer element content
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="content(int, java.lang.String[])"><!-- --></A><H3>
content</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>content</B>(int value,
java.lang.String[] table)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Add enumeration content to current element. The actual text to be
written is obtained by indexing into the supplied array of values.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>value</CODE> - integer enumeration value (zero-based)<DD><CODE>table</CODE> - text values in enumeration
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="endTag(int, java.lang.String)"><!-- --></A><H3>
endTag</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>endTag</B>(int index,
java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate end tag for element.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="element(int, java.lang.String, java.lang.String)"><!-- --></A><H3>
element</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>element</B>(int index,
java.lang.String name,
java.lang.String value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate complete element with text content.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name<DD><CODE>value</CODE> - text element content
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="element(int, java.lang.String, int)"><!-- --></A><H3>
element</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>element</B>(int index,
java.lang.String name,
int value)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate complete element with integer content.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name<DD><CODE>value</CODE> - integer element content
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="element(int, java.lang.String, int, java.lang.String[])"><!-- --></A><H3>
element</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>element</B>(int index,
java.lang.String name,
int value,
java.lang.String[] table)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate complete element with enumeration content. The actual text to be
written is obtained by indexing into the supplied array of values.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name<DD><CODE>value</CODE> - integer enumeration value (zero-based)<DD><CODE>table</CODE> - text values in enumeration
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="writeCData(java.lang.String)"><!-- --></A><H3>
writeCData</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>writeCData</B>(java.lang.String text)
throws java.io.IOException</PRE>
<DL>
<DD>Write CDATA text to document.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>text</CODE> - content value text
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - on error writing to document</DL>
</DD>
</DL>
<HR>
<A NAME="writeContent(java.lang.String)"><!-- --></A><H3>
writeContent</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>writeContent</B>(java.lang.String text)
throws java.io.IOException</PRE>
<DL>
<DD>Write content value with character entity substitutions.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>text</CODE> - content value text
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - on error writing to document</DL>
</DD>
</DL>
<HR>
<A NAME="marshalCollection(java.util.Collection)"><!-- --></A><H3>
marshalCollection</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>marshalCollection</B>(java.util.Collection col)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal all items in a collection. This variation is for generic
collections.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>col</CODE> - collection of items to be marshalled
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalCollection(java.util.ArrayList)"><!-- --></A><H3>
marshalCollection</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>marshalCollection</B>(java.util.ArrayList col)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal all items in a collection. This variation is for ArrayList
collections.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>col</CODE> - collection of items to be marshalled
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalCollection(java.util.Vector)"><!-- --></A><H3>
marshalCollection</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>marshalCollection</B>(java.util.Vector col)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal all items in a collection. This variation is for Vector
collections.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>col</CODE> - collection of items to be marshalled
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="addMarshalling(int, java.lang.String)"><!-- --></A><H3>
addMarshalling</H3>
<PRE>
public void <B>addMarshalling</B>(int index,
java.lang.String name)</PRE>
<DL>
<DD>Define marshalling for class. Adds the marshalling definition using fixed
indexes for each class, allowing direct lookup of the marshaller when
multiple versions are defined.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - class index for marshalling definition<DD><CODE>name</CODE> - marshaller class name handling</DL>
</DD>
</DL>
<HR>
<A NAME="removeMarshalling(int)"><!-- --></A><H3>
removeMarshalling</H3>
<PRE>
public void <B>removeMarshalling</B>(int index)</PRE>
<DL>
<DD>Undefine marshalling for element. Removes the marshalling
definition for a particular class index.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - class index for marshalling definition</DL>
</DD>
</DL>
<HR>
<A NAME="startTagNamespaces(int, java.lang.String, int[], java.lang.String[])"><!-- --></A><H3>
startTagNamespaces</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html" title="class in org.jibx.runtime.impl">MarshallingContext</A> <B>startTagNamespaces</B>(int index,
java.lang.String name,
int[] nums,
java.lang.String[] prefs)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate start tag for element with namespaces. This creates the actual
start tag, along with any necessary namespace declarations. Previously
active namespace declarations are not duplicated. The tag is
left incomplete, allowing other attributes to be added.
TODO: Handle nested default namespaces declarations, prefixes for outers
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - namespace URI index number<DD><CODE>name</CODE> - element name<DD><CODE>nums</CODE> - array of namespace indexes defined by this element (must
be constant, reference is kept until end of element)<DD><CODE>prefs</CODE> - array of namespace prefixes mapped by this element (no
<code>null</code> values, use "" for default namespace declaration)
<DT><B>Returns:</B><DD>this context (to allow chained calls)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="getMarshaller(int, java.lang.String)"><!-- --></A><H3>
getMarshaller</H3>
<PRE>
public <A HREF="../../../../org/jibx/runtime/IMarshaller.html" title="interface in org.jibx.runtime">IMarshaller</A> <B>getMarshaller</B>(int index,
java.lang.String name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Find the marshaller for a particular class index
in the current context.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getMarshaller(int, java.lang.String)">getMarshaller</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - class index for marshalling definition<DD><CODE>name</CODE> - fully qualified name of class to be marshalled (used only
for validation)
<DT><B>Returns:</B><DD>marshalling handler for class
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalRoot(java.lang.Object)"><!-- --></A><H3>
marshalRoot</H3>
<PRE>
protected void <B>marshalRoot</B>(java.lang.Object root)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal document from root object. This internal method just verifies
that the object is marshallable, then calls the marshal method on the
object itself.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>root</CODE> - object at root of structure to be marshalled, which must have
a top-level mapping in the binding
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalDocument(java.lang.Object)"><!-- --></A><H3>
marshalDocument</H3>
<PRE>
public void <B>marshalDocument</B>(java.lang.Object root)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal document from root object without XML declaration. This can only
be validly called immediately following one of the set output methods;
otherwise the output document will be corrupt. The effect of this method
is the same as the sequence of a call to marshal the root object using
this context followed by a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#endDocument()"><CODE>endDocument()</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#marshalDocument(java.lang.Object)">marshalDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>root</CODE> - object at root of structure to be marshalled, which must have
a top-level mapping in the binding
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean)"><!-- --></A><H3>
marshalDocument</H3>
<PRE>
public void <B>marshalDocument</B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal document from root object. This can only be validly called
immediately following one of the set output methods; otherwise the output
document will be corrupt. The effect of this method is the same as the
sequence of a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean)"><CODE>startDocument(java.lang.String, java.lang.Boolean)</CODE></A>, a call to marshal the root
object using this context, and finally a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#endDocument()"><CODE>endDocument()</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean)">marshalDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>root</CODE> - object at root of structure to be marshalled, which must have
a top-level mapping in the binding<DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.OutputStream)"><!-- --></A><H3>
marshalDocument</H3>
<PRE>
public void <B>marshalDocument</B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone,
java.io.OutputStream outs)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal document from root object to output stream with encoding. The
effect of this method is the same as the sequence of a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean)"><CODE>startDocument(java.lang.String, java.lang.Boolean)</CODE></A>, a call to marshal the root object using this context,
and finally a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#endDocument()"><CODE>endDocument()</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.OutputStream)">marshalDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>root</CODE> - object at root of structure to be marshalled, which must have
a top-level mapping in the binding<DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified<DD><CODE>outs</CODE> - stream for document data output
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.Writer)"><!-- --></A><H3>
marshalDocument</H3>
<PRE>
public void <B>marshalDocument</B>(java.lang.Object root,
java.lang.String enc,
java.lang.Boolean alone,
java.io.Writer outw)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Marshal document from root object to writer. The effect of this method
is the same as the sequence of a call to <A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#startDocument(java.lang.String, java.lang.Boolean)"><CODE>startDocument(java.lang.String, java.lang.Boolean)</CODE></A>, a call
to marshal the root object using this context, and finally a call to
<A HREF="../../../../org/jibx/runtime/impl/MarshallingContext.html#endDocument()"><CODE>endDocument()</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#marshalDocument(java.lang.Object, java.lang.String, java.lang.Boolean, java.io.Writer)">marshalDocument</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>root</CODE> - object at root of structure to be marshalled, which must have
a top-level mapping in the binding<DD><CODE>enc</CODE> - document encoding, <code>null</code> if not specified<DD><CODE>alone</CODE> - standalone document flag, <code>null</code> if not
specified<DD><CODE>outw</CODE> - writer for document data output
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on any error (possibly wrapping other exception)</DL>
</DD>
</DL>
<HR>
<A NAME="getIdMap()"><!-- --></A><H3>
getIdMap</H3>
<PRE>
public java.util.HashMap <B>getIdMap</B>()</PRE>
<DL>
<DD>Get shared ID map. The ID map returned is not used directly by the
marshalling code, but is provided to support user extensions.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>ID map</DL>
</DD>
</DL>
<HR>
<A NAME="pushObject(java.lang.Object)"><!-- --></A><H3>
pushObject</H3>
<PRE>
public void <B>pushObject</B>(java.lang.Object obj)</PRE>
<DL>
<DD>Push created object to marshalling stack. This must be called before
beginning the marshalling of the object. It is only called for objects
with structure, not for those converted directly to and from text.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#pushObject(java.lang.Object)">pushObject</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>obj</CODE> - object being marshalled</DL>
</DD>
</DL>
<HR>
<A NAME="popObject()"><!-- --></A><H3>
popObject</H3>
<PRE>
public void <B>popObject</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Pop marshalled object from stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#popObject()">popObject</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if no object on stack</DL>
</DD>
</DL>
<HR>
<A NAME="getStackDepth()"><!-- --></A><H3>
getStackDepth</H3>
<PRE>
public int <B>getStackDepth</B>()</PRE>
<DL>
<DD>Get current marshalling object stack depth. This allows tracking
nested calls to marshal one object while in the process of
marshalling another object. The bottom item on the stack is always the
root object being marshalled.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getStackDepth()">getStackDepth</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>number of objects in marshalling stack</DL>
</DD>
</DL>
<HR>
<A NAME="getStackObject(int)"><!-- --></A><H3>
getStackObject</H3>
<PRE>
public java.lang.Object <B>getStackObject</B>(int depth)</PRE>
<DL>
<DD>Get object from marshalling stack. This stack allows tracking nested
calls to marshal one object while in the process of marshalling
another object. The bottom item on the stack is always the root object
being marshalled.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getStackObject(int)">getStackObject</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>depth</CODE> - object depth in stack to be retrieved (must be in the range
of zero to the current depth minus one).
<DT><B>Returns:</B><DD>object from marshalling stack</DL>
</DD>
</DL>
<HR>
<A NAME="getStackTop()"><!-- --></A><H3>
getStackTop</H3>
<PRE>
public java.lang.Object <B>getStackTop</B>()</PRE>
<DL>
<DD>Get top object on marshalling stack. This is safe to call even when no
objects are on the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html#getStackTop()">getStackTop</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/runtime/IMarshallingContext.html" title="interface in org.jibx.runtime">IMarshallingContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>object from marshalling stack, or <code>null</code> if none</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/runtime/impl/ITrackSourceImpl.html" title="interface in org.jibx.runtime.impl"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/runtime/impl/SparseArrayIterator.html" title="class in org.jibx.runtime.impl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/runtime/impl/MarshallingContext.html" target="_top"><B>FRAMES</B></A>
<A HREF="MarshallingContext.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>
|