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
|
<!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:22 CET 2008 -->
<TITLE>
DirectObject (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="DirectObject (JiBX Java data binding to XML - Version 1.0)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/jibx/binding/def/DirectGeneric.html" title="class in org.jibx.binding.def"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/binding/def/DirectProperty.html" title="class in org.jibx.binding.def"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/binding/def/DirectObject.html" target="_top"><B>FRAMES</B></A>
<A HREF="DirectObject.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.jibx.binding.def</FONT>
<BR>
Class DirectObject</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.jibx.binding.def.DirectObject</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>DirectObject</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></DL>
</PRE>
<P>
Linkage to object with supplied marshaller and unmarshaller. This provides
methods used to generate code for calling the supplied classes.
<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 java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ABSTRACTMARSHAL_METHOD">ABSTRACTMARSHAL_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ABSTRACTMARSHAL_SIGNATURE">ABSTRACTMARSHAL_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ABSTRACTMARSHALLER_INTERFACE">ABSTRACTMARSHALLER_INTERFACE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ALIASABLE_INTERFACETYPE">ALIASABLE_INTERFACETYPE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ANY_INIT_SIG">ANY_INIT_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#ANY_INITCLASS_SIG">ANY_INITCLASS_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#GETMARSHALLER_METHOD">GETMARSHALLER_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#GETMARSHALLER_SIGNATURE">GETMARSHALLER_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#GETUNMARSHALLER_METHOD">GETUNMARSHALLER_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#GETUNMARSHALLER_SIGNATURE">GETUNMARSHALLER_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/def/DefinitionContext.html" title="class in org.jibx.binding.def">DefinitionContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_defContext">m_defContext</A></B></CODE>
<BR>
Definition context for resolving names.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_isAbstract">m_isAbstract</A></B></CODE>
<BR>
Abstract mapping flag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_isSlotSet">m_isSlotSet</A></B></CODE>
<BR>
Flag for marshaller/unmarshaller slot defined.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_marshaller">m_marshaller</A></B></CODE>
<BR>
Marshaller class (lazy create on first use if name supplied).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_marshallerBase">m_marshallerBase</A></B></CODE>
<BR>
Marshaller base class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_mumSlot">m_mumSlot</A></B></CODE>
<BR>
Marshaller/unmarshaller slot number.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_name">m_name</A></B></CODE>
<BR>
Element name information (<code>null</code> if no bound element).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/def/IContainer.html" title="interface in org.jibx.binding.def">IContainer</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_parent">m_parent</A></B></CODE>
<BR>
Containing binding definition structure.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_targetClass">m_targetClass</A></B></CODE>
<BR>
Class handled by this binding.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_unmarshaller">m_unmarshaller</A></B></CODE>
<BR>
Unmarshaller class (lazy create on first use if name supplied).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#m_unmarshallerBase">m_unmarshallerBase</A></B></CODE>
<BR>
Unmarshaller base class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALLER_MARSHAL_METHOD">MARSHALLER_MARSHAL_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALLER_MARSHAL_SIGNATURE">MARSHALLER_MARSHAL_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALONLY_INIT_SIG">MARSHALONLY_INIT_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALONLY_INITCLASS_SIG">MARSHALONLY_INITCLASS_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALUNMARSHAL_INIT_SIG">MARSHALUNMARSHAL_INIT_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#MARSHALUNMARSHAL_INITCLASS_SIG">MARSHALUNMARSHAL_INITCLASS_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALLER_TESTPRESENT_METHOD">UNMARSHALLER_TESTPRESENT_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALLER_TESTPRESENT_SIGNATURE">UNMARSHALLER_TESTPRESENT_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALLER_UNMARSHAL_METHOD">UNMARSHALLER_UNMARSHAL_METHOD</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALLER_UNMARSHAL_SIGNATURE">UNMARSHALLER_UNMARSHAL_SIGNATURE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALONLY_INIT_SIG">UNMARSHALONLY_INIT_SIG</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#UNMARSHALONLY_INITCLASS_SIG">UNMARSHALONLY_INITCLASS_SIG</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#DirectObject(org.jibx.binding.def.IContainer, org.jibx.binding.def.DefinitionContext, org.jibx.binding.classes.ClassFile, boolean, org.jibx.binding.classes.ClassFile, org.jibx.binding.classes.ClassFile, int, org.jibx.binding.def.NameDefinition)">DirectObject</A></B>(<A HREF="../../../../org/jibx/binding/def/IContainer.html" title="interface in org.jibx.binding.def">IContainer</A> parent,
<A HREF="../../../../org/jibx/binding/def/DefinitionContext.html" title="class in org.jibx.binding.def">DefinitionContext</A> defc,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> target,
boolean abs,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> mcf,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> ucf,
int slot,
<A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A> name)</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> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#checkContentSequence(boolean)">checkContentSequence</A></B>(boolean text)</CODE>
<BR>
Check sequence of content values.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#createSubclass(boolean)">createSubclass</A></B>(boolean out)</CODE>
<BR>
Create aliased subclass for marshaller or unmarshaller with element name
defined by binding.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genAttributeMarshal(org.jibx.binding.classes.ContextMethodBuilder)">genAttributeMarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate attribute marshalling code.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genAttributeUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">genAttributeUnmarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate attribute unmarshalling code.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genAttrPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">genAttrPresentTest</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate code to test for attribute present.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genContentMarshal(org.jibx.binding.classes.ContextMethodBuilder)">genContentMarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate element or text marshalling code.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genContentPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">genContentPresentTest</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate code to test for content present.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genContentUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">genContentUnmarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate element or text unmarshalling code.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genLoadId(org.jibx.binding.classes.ContextMethodBuilder)">genLoadId</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate code to load ID value of instance to stack.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genLoadSlot(org.jibx.binding.classes.ContextMethodBuilder)">genLoadSlot</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Load marshaller/unmarshaller index.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genMarshal(org.jibx.binding.classes.ContextMethodBuilder)">genMarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate marshalling code for this mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genNewInstance(org.jibx.binding.classes.ContextMethodBuilder)">genNewInstance</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate code to create new instance of 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/binding/def/DirectObject.html#genTestPresent(org.jibx.binding.classes.ContextMethodBuilder)">genTestPresent</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate presence test code for this mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#genUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">genUnmarshal</A></B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</CODE>
<BR>
Generate unmarshalling code for this mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getMarshaller()">getMarshaller</A></B>()</CODE>
<BR>
Get marshaller class used for mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getName()">getName</A></B>()</CODE>
<BR>
Get mapped element name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getSlot()">getSlot</A></B>()</CODE>
<BR>
Get marshaller/unmarshaller index.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getTargetClass()">getTargetClass</A></B>()</CODE>
<BR>
Get target class for mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getType()">getType</A></B>()</CODE>
<BR>
Get type expected by component.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#getUnmarshaller()">getUnmarshaller</A></B>()</CODE>
<BR>
Get unmarshaller class used for mapping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#hasAttribute()">hasAttribute</A></B>()</CODE>
<BR>
Check if component defines one or more attribute values of the
containing element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#hasContent()">hasContent</A></B>()</CODE>
<BR>
Check if component defines one or more elements or text values as
children of the containing element.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#hasId()">hasId</A></B>()</CODE>
<BR>
Check if component defines an ID value for instances of context object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#isOptional()">isOptional</A></B>()</CODE>
<BR>
Check if component is an optional item.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#print(int)">print</A></B>(int depth)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/jibx/binding/def/DirectObject.html#setLinkages()">setLinkages</A></B>()</CODE>
<BR>
Establish and validate linkages between binding components.</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="GETUNMARSHALLER_METHOD"><!-- --></A><H3>
GETUNMARSHALLER_METHOD</H3>
<PRE>
private static final java.lang.String <B>GETUNMARSHALLER_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.GETUNMARSHALLER_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="GETUNMARSHALLER_SIGNATURE"><!-- --></A><H3>
GETUNMARSHALLER_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>GETUNMARSHALLER_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.GETUNMARSHALLER_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="GETMARSHALLER_METHOD"><!-- --></A><H3>
GETMARSHALLER_METHOD</H3>
<PRE>
private static final java.lang.String <B>GETMARSHALLER_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.GETMARSHALLER_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="GETMARSHALLER_SIGNATURE"><!-- --></A><H3>
GETMARSHALLER_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>GETMARSHALLER_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.GETMARSHALLER_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALLER_MARSHAL_METHOD"><!-- --></A><H3>
MARSHALLER_MARSHAL_METHOD</H3>
<PRE>
private static final java.lang.String <B>MARSHALLER_MARSHAL_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALLER_MARSHAL_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALLER_MARSHAL_SIGNATURE"><!-- --></A><H3>
MARSHALLER_MARSHAL_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>MARSHALLER_MARSHAL_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALLER_MARSHAL_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALLER_TESTPRESENT_METHOD"><!-- --></A><H3>
UNMARSHALLER_TESTPRESENT_METHOD</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALLER_TESTPRESENT_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALLER_TESTPRESENT_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALLER_TESTPRESENT_SIGNATURE"><!-- --></A><H3>
UNMARSHALLER_TESTPRESENT_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALLER_TESTPRESENT_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALLER_TESTPRESENT_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALLER_UNMARSHAL_METHOD"><!-- --></A><H3>
UNMARSHALLER_UNMARSHAL_METHOD</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALLER_UNMARSHAL_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALLER_UNMARSHAL_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALLER_UNMARSHAL_SIGNATURE"><!-- --></A><H3>
UNMARSHALLER_UNMARSHAL_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALLER_UNMARSHAL_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALLER_UNMARSHAL_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ABSTRACTMARSHALLER_INTERFACE"><!-- --></A><H3>
ABSTRACTMARSHALLER_INTERFACE</H3>
<PRE>
private static final java.lang.String <B>ABSTRACTMARSHALLER_INTERFACE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ABSTRACTMARSHALLER_INTERFACE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ABSTRACTMARSHAL_METHOD"><!-- --></A><H3>
ABSTRACTMARSHAL_METHOD</H3>
<PRE>
private static final java.lang.String <B>ABSTRACTMARSHAL_METHOD</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ABSTRACTMARSHAL_METHOD">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ABSTRACTMARSHAL_SIGNATURE"><!-- --></A><H3>
ABSTRACTMARSHAL_SIGNATURE</H3>
<PRE>
private static final java.lang.String <B>ABSTRACTMARSHAL_SIGNATURE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ABSTRACTMARSHAL_SIGNATURE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ALIASABLE_INTERFACETYPE"><!-- --></A><H3>
ALIASABLE_INTERFACETYPE</H3>
<PRE>
private static final java.lang.String <B>ALIASABLE_INTERFACETYPE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ALIASABLE_INTERFACETYPE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ANY_INIT_SIG"><!-- --></A><H3>
ANY_INIT_SIG</H3>
<PRE>
private static final java.lang.String <B>ANY_INIT_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ANY_INIT_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ANY_INITCLASS_SIG"><!-- --></A><H3>
ANY_INITCLASS_SIG</H3>
<PRE>
private static final java.lang.String <B>ANY_INITCLASS_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.ANY_INITCLASS_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALUNMARSHAL_INIT_SIG"><!-- --></A><H3>
MARSHALUNMARSHAL_INIT_SIG</H3>
<PRE>
private static final java.lang.String <B>MARSHALUNMARSHAL_INIT_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALUNMARSHAL_INIT_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALONLY_INIT_SIG"><!-- --></A><H3>
MARSHALONLY_INIT_SIG</H3>
<PRE>
private static final java.lang.String <B>MARSHALONLY_INIT_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALONLY_INIT_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALONLY_INIT_SIG"><!-- --></A><H3>
UNMARSHALONLY_INIT_SIG</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALONLY_INIT_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALONLY_INIT_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALUNMARSHAL_INITCLASS_SIG"><!-- --></A><H3>
MARSHALUNMARSHAL_INITCLASS_SIG</H3>
<PRE>
private static final java.lang.String <B>MARSHALUNMARSHAL_INITCLASS_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALUNMARSHAL_INITCLASS_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MARSHALONLY_INITCLASS_SIG"><!-- --></A><H3>
MARSHALONLY_INITCLASS_SIG</H3>
<PRE>
private static final java.lang.String <B>MARSHALONLY_INITCLASS_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.MARSHALONLY_INITCLASS_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNMARSHALONLY_INITCLASS_SIG"><!-- --></A><H3>
UNMARSHALONLY_INITCLASS_SIG</H3>
<PRE>
private static final java.lang.String <B>UNMARSHALONLY_INITCLASS_SIG</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#org.jibx.binding.def.DirectObject.UNMARSHALONLY_INITCLASS_SIG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="m_parent"><!-- --></A><H3>
m_parent</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/def/IContainer.html" title="interface in org.jibx.binding.def">IContainer</A> <B>m_parent</B></PRE>
<DL>
<DD>Containing binding definition structure.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_defContext"><!-- --></A><H3>
m_defContext</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/def/DefinitionContext.html" title="class in org.jibx.binding.def">DefinitionContext</A> <B>m_defContext</B></PRE>
<DL>
<DD>Definition context for resolving names.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isAbstract"><!-- --></A><H3>
m_isAbstract</H3>
<PRE>
private final boolean <B>m_isAbstract</B></PRE>
<DL>
<DD>Abstract mapping flag. If this is set the marshalling code will call the
special interface method used to verify the type of a passed object and
marshal it with the proper handling.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_name"><!-- --></A><H3>
m_name</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A> <B>m_name</B></PRE>
<DL>
<DD>Element name information (<code>null</code> if no bound element).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_isSlotSet"><!-- --></A><H3>
m_isSlotSet</H3>
<PRE>
private boolean <B>m_isSlotSet</B></PRE>
<DL>
<DD>Flag for marshaller/unmarshaller slot defined. This is done during code
generation, rather than during linking, so that all mapped bindings can be
defined with lower index numbers than for marshallers/unmarshallers used
only in a specific context.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_mumSlot"><!-- --></A><H3>
m_mumSlot</H3>
<PRE>
private int <B>m_mumSlot</B></PRE>
<DL>
<DD>Marshaller/unmarshaller slot number.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_targetClass"><!-- --></A><H3>
m_targetClass</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_targetClass</B></PRE>
<DL>
<DD>Class handled by this binding.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_marshallerBase"><!-- --></A><H3>
m_marshallerBase</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_marshallerBase</B></PRE>
<DL>
<DD>Marshaller base class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_unmarshallerBase"><!-- --></A><H3>
m_unmarshallerBase</H3>
<PRE>
private final <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_unmarshallerBase</B></PRE>
<DL>
<DD>Unmarshaller base class.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_marshaller"><!-- --></A><H3>
m_marshaller</H3>
<PRE>
private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_marshaller</B></PRE>
<DL>
<DD>Marshaller class (lazy create on first use if name supplied).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="m_unmarshaller"><!-- --></A><H3>
m_unmarshaller</H3>
<PRE>
private <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>m_unmarshaller</B></PRE>
<DL>
<DD>Unmarshaller class (lazy create on first use if name supplied).
<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="DirectObject(org.jibx.binding.def.IContainer, org.jibx.binding.def.DefinitionContext, org.jibx.binding.classes.ClassFile, boolean, org.jibx.binding.classes.ClassFile, org.jibx.binding.classes.ClassFile, int, org.jibx.binding.def.NameDefinition)"><!-- --></A><H3>
DirectObject</H3>
<PRE>
public <B>DirectObject</B>(<A HREF="../../../../org/jibx/binding/def/IContainer.html" title="interface in org.jibx.binding.def">IContainer</A> parent,
<A HREF="../../../../org/jibx/binding/def/DefinitionContext.html" title="class in org.jibx.binding.def">DefinitionContext</A> defc,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> target,
boolean abs,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> mcf,
<A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> ucf,
int slot,
<A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A> name)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Constructor.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>parent</CODE> - containing binding definition structure<DD><CODE>target</CODE> - class handled by this binding<DD><CODE>abs</CODE> - abstract mapping flag<DD><CODE>mcf</CODE> - marshaller class information (<code>null</code> if input only
binding)<DD><CODE>ucf</CODE> - unmarshaller class information (<code>null</code> if output
only binding)<DD><CODE>slot</CODE> - marshaller/unmarshaller slot number (<code>-1</code> if to be
defined later)<DD><CODE>name</CODE> - element name information (<code>null</code> if no element
name)
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if configuration error</DL>
</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="getSlot()"><!-- --></A><H3>
getSlot</H3>
<PRE>
private int <B>getSlot</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get marshaller/unmarshaller index. This is the index into the tables of
marshaller and unmarshaller instances maintained by the respective
contexts. On the first time call this gets the index number from the
binding definition, then the index number is reused on subsequent calls.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>slot number for binding
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="genLoadSlot(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genLoadSlot</H3>
<PRE>
private void <B>genLoadSlot</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Load marshaller/unmarshaller index. This is assigned by the binding
definition and used thereafter.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="createSubclass(boolean)"><!-- --></A><H3>
createSubclass</H3>
<PRE>
private void <B>createSubclass</B>(boolean out)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Create aliased subclass for marshaller or unmarshaller with element name
defined by binding. If the same aliasable superclass is defined for use
as both a marshaller and an unmarshaller a single subclass is generated
to handle both uses.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>out</CODE> - <code>true</code> if alias needed for marshalling,
<code>false</code> if for unmarshalling
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - on configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="genTestPresent(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genTestPresent</H3>
<PRE>
public void <B>genTestPresent</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate presence test code for this mapping. The generated code finds
the unmarshaller and calls the test method, leaving the result on the
stack.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in generating code</DL>
</DD>
</DL>
<HR>
<A NAME="genUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genUnmarshal</H3>
<PRE>
public void <B>genUnmarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate unmarshalling code for this mapping. The generated code finds
and calls the unmarshaller with the object to be unmarshaller (which
needs to be loaded on the stack by the code prior to this call, but may
be <code>null</code>). The unmarshalled object (or <code>null</code> in
the case of a missing optional item) is left on the stack after this
call. The calling method generally needs to cast this object reference to
the appropriate type before using it.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in generating code</DL>
</DD>
</DL>
<HR>
<A NAME="genMarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genMarshal</H3>
<PRE>
public void <B>genMarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Generate marshalling code for this mapping. The generated code finds
and calls the marshaller, passing the object to be marshalled (which
should have been loaded to the stack by the prior generated code)..
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in configuration</DL>
</DD>
</DL>
<HR>
<A NAME="getTargetClass()"><!-- --></A><H3>
getTargetClass</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>getTargetClass</B>()</PRE>
<DL>
<DD>Get target class for mapping.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>target class information</DL>
</DD>
</DL>
<HR>
<A NAME="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/def/NameDefinition.html" title="class in org.jibx.binding.def">NameDefinition</A> <B>getName</B>()</PRE>
<DL>
<DD>Get mapped element name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>mapped element name information (may be <code>null</code> if no
element name defined for mapping)</DL>
</DD>
</DL>
<HR>
<A NAME="getMarshaller()"><!-- --></A><H3>
getMarshaller</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>getMarshaller</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get marshaller class used for mapping. If a name has been supplied the
actual marshaller class is created by extending the base class the first
time this method is called.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>marshaller class information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in transformation</DL>
</DD>
</DL>
<HR>
<A NAME="getUnmarshaller()"><!-- --></A><H3>
getUnmarshaller</H3>
<PRE>
public <A HREF="../../../../org/jibx/binding/classes/ClassFile.html" title="class in org.jibx.binding.classes">ClassFile</A> <B>getUnmarshaller</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD>Get unmarshaller class used for mapping. If a name has been supplied the
actual unmarshaller class is created by extending the base class the
first time this method is called.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>unmarshaller class information
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in transformation</DL>
</DD>
</DL>
<HR>
<A NAME="isOptional()"><!-- --></A><H3>
isOptional</H3>
<PRE>
public boolean <B>isOptional</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#isOptional()">IComponent</A></CODE></B></DD>
<DD>Check if component is an optional item.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#isOptional()">isOptional</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if optional, <code>false</code> if required</DL>
</DD>
</DL>
<HR>
<A NAME="hasAttribute()"><!-- --></A><H3>
hasAttribute</H3>
<PRE>
public boolean <B>hasAttribute</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasAttribute()">IComponent</A></CODE></B></DD>
<DD>Check if component defines one or more attribute values of the
containing element.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasAttribute()">hasAttribute</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if one or more attribute values defined for
containing element, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="genAttrPresentTest(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genAttrPresentTest</H3>
<PRE>
public void <B>genAttrPresentTest</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttrPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate code to test for attribute present. This generates code that
tests if a child is present as determined by attributes of the containing
start tag. It leaves the result of the test (zero if missing, nonzero if
present) on the stack. This call is only valid if this component has one
or more attributes for the containing element.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttrPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">genAttrPresentTest</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder</DL>
</DD>
</DL>
<HR>
<A NAME="genAttributeUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genAttributeUnmarshal</H3>
<PRE>
public void <B>genAttributeUnmarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttributeUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate attribute unmarshalling code. This is called within the code
generation for the unmarshaller of the class associated with the
containing element. It needs to generate the necessary code for handling
the unmarshalling operation, leaving the unmarshalled object
reference on the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttributeUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">genAttributeUnmarshal</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder</DL>
</DD>
</DL>
<HR>
<A NAME="genAttributeMarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genAttributeMarshal</H3>
<PRE>
public void <B>genAttributeMarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttributeMarshal(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate attribute marshalling code. This is called within the code
generation for the marshaller of the class associated with the
containing element. It needs to generate the necessary code for handling
the marshalling operation, consuming the marshalled object
reference from the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genAttributeMarshal(org.jibx.binding.classes.ContextMethodBuilder)">genAttributeMarshal</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder</DL>
</DD>
</DL>
<HR>
<A NAME="hasContent()"><!-- --></A><H3>
hasContent</H3>
<PRE>
public boolean <B>hasContent</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasContent()">IComponent</A></CODE></B></DD>
<DD>Check if component defines one or more elements or text values as
children of the containing element. This method is only valid after the
call to <A HREF="../../../../org/jibx/binding/def/IComponent.html#setLinkages()"><CODE>IComponent.setLinkages()</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasContent()">hasContent</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if one or more content values defined
for containing element, <code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="genContentPresentTest(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genContentPresentTest</H3>
<PRE>
public void <B>genContentPresentTest</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate code to test for content present. This generates code that
tests if a required element is present, leaving the result of the test
(zero if missing, nonzero if present) on the stack. This call is only
valid if this component has one or more content components for the
containing element.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentPresentTest(org.jibx.binding.classes.ContextMethodBuilder)">genContentPresentTest</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if configuration error</DL>
</DD>
</DL>
<HR>
<A NAME="genContentUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genContentUnmarshal</H3>
<PRE>
public void <B>genContentUnmarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate element or text unmarshalling code. This is called within the
code generation for the unmarshaller of the class associated with the
containing element. It needs to generate the necessary code for
handling the unmarshalling operation, leaving the unmarshalled object
reference on the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentUnmarshal(org.jibx.binding.classes.ContextMethodBuilder)">genContentUnmarshal</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in configuration</DL>
</DD>
</DL>
<HR>
<A NAME="genContentMarshal(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genContentMarshal</H3>
<PRE>
public void <B>genContentMarshal</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentMarshal(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate element or text marshalling code. This is called within the
code generation for the marshaller of the class associated with the
containing element. It needs to generate the necessary code for
handling the marshalling operation, consuming the marshalled object
reference from the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genContentMarshal(org.jibx.binding.classes.ContextMethodBuilder)">genContentMarshal</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></CODE> - if error in configuration</DL>
</DD>
</DL>
<HR>
<A NAME="genNewInstance(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genNewInstance</H3>
<PRE>
public void <B>genNewInstance</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genNewInstance(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate code to create new instance of object. This is called within the
code generation for the unmarshaller of the class associated with the
containing element. It needs to generate the necessary code for creating
an instance of the object to be unmarshalled, leaving the object
reference on the stack.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genNewInstance(org.jibx.binding.classes.ContextMethodBuilder)">genNewInstance</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder</DL>
</DD>
</DL>
<HR>
<A NAME="getType()"><!-- --></A><H3>
getType</H3>
<PRE>
public java.lang.String <B>getType</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#getType()">IComponent</A></CODE></B></DD>
<DD>Get type expected by component.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#getType()">getType</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>fully qualified class name of expected type</DL>
</DD>
</DL>
<HR>
<A NAME="hasId()"><!-- --></A><H3>
hasId</H3>
<PRE>
public boolean <B>hasId</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasId()">IComponent</A></CODE></B></DD>
<DD>Check if component defines an ID value for instances of context object.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#hasId()">hasId</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD><code>true</code> if ID value defined for instances,
<code>false</code> if not</DL>
</DD>
</DL>
<HR>
<A NAME="genLoadId(org.jibx.binding.classes.ContextMethodBuilder)"><!-- --></A><H3>
genLoadId</H3>
<PRE>
public void <B>genLoadId</B>(<A HREF="../../../../org/jibx/binding/classes/ContextMethodBuilder.html" title="class in org.jibx.binding.classes">ContextMethodBuilder</A> mb)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genLoadId(org.jibx.binding.classes.ContextMethodBuilder)">IComponent</A></CODE></B></DD>
<DD>Generate code to load ID value of instance to stack. The generated code
should assume that the top of the stack is the reference for the
containing object. It must consume this and leave the actual ID value
on the stack (as a <code>String</code>).
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#genLoadId(org.jibx.binding.classes.ContextMethodBuilder)">genLoadId</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mb</CODE> - method builder</DL>
</DD>
</DL>
<HR>
<A NAME="checkContentSequence(boolean)"><!-- --></A><H3>
checkContentSequence</H3>
<PRE>
public boolean <B>checkContentSequence</B>(boolean text)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#checkContentSequence(boolean)">IComponent</A></CODE></B></DD>
<DD>Check sequence of content values. Validates the sequence of content
items, ensuring that text values only occur immediately following a
required element value (or the start tag for the enclosing element).
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#checkContentSequence(boolean)">checkContentSequence</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>text</CODE> - allow text value flag from last component
<DT><B>Returns:</B><DD>allow text value as next content component flag</DL>
</DD>
</DL>
<HR>
<A NAME="setLinkages()"><!-- --></A><H3>
setLinkages</H3>
<PRE>
public void <B>setLinkages</B>()
throws <A HREF="../../../../org/jibx/runtime/JiBXException.html" title="class in org.jibx.runtime">JiBXException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#setLinkages()">IComponent</A></CODE></B></DD>
<DD>Establish and validate linkages between binding components. This is
called after the basic binding structures have been set up. All linkages
between components must be resolved by this method, in order to prevent
problems due to the order of definitions between components. This implies
that each component must in turn call the same method for each child
component. None of the other method calls defined by this interface are
valid until after this call.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#setLinkages()">setLinkages</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</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 error in configuration</DL>
</DD>
</DL>
<HR>
<A NAME="print(int)"><!-- --></A><H3>
print</H3>
<PRE>
public void <B>print</B>(int depth)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html#print(int)">print</A></CODE> in interface <CODE><A HREF="../../../../org/jibx/binding/def/IComponent.html" title="interface in org.jibx.binding.def">IComponent</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/jibx/binding/def/DirectGeneric.html" title="class in org.jibx.binding.def"><B>PREV CLASS</B></A>
<A HREF="../../../../org/jibx/binding/def/DirectProperty.html" title="class in org.jibx.binding.def"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/jibx/binding/def/DirectObject.html" target="_top"><B>FRAMES</B></A>
<A HREF="DirectObject.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>
|