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
|
<!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.4.2_07) on Thu Oct 12 12:19:55 EDT 2006 -->
<TITLE>
PDPage (PDFBox-0.7.3 API)
</TITLE>
<META NAME="keywords" CONTENT="org.pdfbox.pdmodel.PDPage class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="PDPage (PDFBox-0.7.3 API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= 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=3 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="class-use/PDPage.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</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/pdfbox/pdmodel/PDEmbeddedFilesNameTreeNode.html" title="class in org.pdfbox.pdmodel"><B>PREV CLASS</B></A>
<A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="PDPage.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.pdfbox.pdmodel</FONT>
<BR>
Class PDPage</H2>
<PRE>
<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>org.pdfbox.pdmodel.PDPage</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../org/pdfbox/pdmodel/common/COSObjectable.html" title="interface in org.pdfbox.pdmodel.common">COSObjectable</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html" title="class or interface in java.awt.print">Printable</A></DD>
</DL>
<HR>
<DL>
<DT>public class <B>PDPage</B><DT>extends <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A><DT>implements <A HREF="../../../org/pdfbox/pdmodel/common/COSObjectable.html" title="interface in org.pdfbox.pdmodel.common">COSObjectable</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html" title="class or interface in java.awt.print">Printable</A></DL>
<P>
This represents a single page in a PDF document.
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>$Revision: 1.28 $</DD>
<DT><B>Author:</B></DT>
<DD><a href="mailto:ben@benlitchfield.com">Ben Litchfield</a></DD>
</DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Field Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#PAGE_SIZE_LETTER">PAGE_SIZE_LETTER</A></B></CODE>
<BR>
A page size of LETTER or 8.5x11.</TD>
</TR>
</TABLE>
<A NAME="fields_inherited_from_class_java.awt.print.Printable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Fields inherited from interface java.awt.print.<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html" title="class or interface in java.awt.print">Printable</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html#NO_SUCH_PAGE" title="class or interface in java.awt.print">NO_SUCH_PAGE</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html#PAGE_EXISTS" title="class or interface in java.awt.print">PAGE_EXISTS</A></CODE></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">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#PDPage()">PDPage</A></B>()</CODE>
<BR>
Creates a new instance of PDPage with a size of 8.5x11.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#PDPage(org.pdfbox.cos.COSDictionary)">PDPage</A></B>(<A HREF="../../../org/pdfbox/cos/COSDictionary.html" title="class in org.pdfbox.cos">COSDictionary</A> pageDic)</CODE>
<BR>
Creates a new instance of PDPage.</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">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImage.html" title="class or interface in java.awt.image">BufferedImage</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#convertToImage()">convertToImage</A></B>()</CODE>
<BR>
Convert this page to an output image.</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/pdfbox/pdmodel/PDPage.html#equals(java.lang.Object)">equals</A></B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> other)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#findCropBox()">findCropBox</A></B>()</CODE>
<BR>
This will find the CropBox for this page by looking up the hierarchy until
it finds them.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#findMediaBox()">findMediaBox</A></B>()</CODE>
<BR>
This will find the MediaBox for this page by looking up the hierarchy until
it finds them.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#findResources()">findResources</A></B>()</CODE>
<BR>
This will find the resources for this page by looking up the hierarchy until
it finds them.</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/pdfbox/pdmodel/PDPage.html#findRotation()">findRotation</A></B>()</CODE>
<BR>
This will find the rotation for this page by looking up the hierarchy until
it finds them.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/interactive/action/PDPageAdditionalActions.html" title="class in org.pdfbox.pdmodel.interactive.action">PDPageAdditionalActions</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getActions()">getActions</A></B>()</CODE>
<BR>
Get the page actions.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getAnnotations()">getAnnotations</A></B>()</CODE>
<BR>
This will return a list of the Annotations for this page.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getArtBox()">getArtBox</A></B>()</CODE>
<BR>
A rectangle, expressed in default user space units, defining
the extent of the page's meaningful content (including potential
white space) as intended by the page's creator The default isthe CropBox.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getBleedBox()">getBleedBox</A></B>()</CODE>
<BR>
A rectangle, expressed in default user space units, defining
the region to which the contents of the page should be clipped
when output in a production environment. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDStream.html" title="class in org.pdfbox.pdmodel.common">PDStream</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getContents()">getContents</A></B>()</CODE>
<BR>
This will get the contents of the PDF Page, in the case that the contents
of the page is an array then then the entire array of streams will be
be wrapped and appear as a single stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/cos/COSDictionary.html" title="class in org.pdfbox.cos">COSDictionary</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getCOSDictionary()">getCOSDictionary</A></B>()</CODE>
<BR>
This will get the underlying dictionary that this class acts on.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/cos/COSBase.html" title="class in org.pdfbox.cos">COSBase</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getCOSObject()">getCOSObject</A></B>()</CODE>
<BR>
Convert this standard java object to a COS object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getCropBox()">getCropBox</A></B>()</CODE>
<BR>
A rectangle, expressed in default user space units,
defining the visible region of default user space. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html" title="class or interface in java.util">Calendar</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getLastModified()">getLastModified</A></B>()</CODE>
<BR>
This will get the date that the content stream was last modified. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getMediaBox()">getMediaBox</A></B>()</CODE>
<BR>
A rectangle, expressed
in default user space units, defining the boundaries of the physical
medium on which the page is intended to be displayed or printed
This will get the MediaBox at this page and not look up the hierarchy.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDMetadata.html" title="class in org.pdfbox.pdmodel.common">PDMetadata</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getMetadata()">getMetadata</A></B>()</CODE>
<BR>
Get the metadata that is part of the document catalog. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel">PDPageNode</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getParent()">getParent</A></B>()</CODE>
<BR>
This is the parent page node. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getResources()">getResources</A></B>()</CODE>
<BR>
This will get the resources at this page and not look up the hierarchy.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Integer.html" title="class or interface in java.lang">Integer</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getRotation()">getRotation</A></B>()</CODE>
<BR>
A value representing the rotation. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getThreadBeads()">getThreadBeads</A></B>()</CODE>
<BR>
This will get a list of PDThreadBead objects, which are article threads in the
document. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/pdfbox/pdmodel/PDPage.html#getTrimBox()">getTrimBox</A></B>()</CODE>
<BR>
A rectangle, expressed in default user space units, defining
the intended dimensions of the finished page after trimming.
</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/pdfbox/pdmodel/PDPage.html#hashCode()">hashCode</A></B>()</CODE>
<BR>
</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/pdfbox/pdmodel/PDPage.html#print(java.awt.Graphics, java.awt.print.PageFormat, int)">print</A></B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Graphics.html" title="class or interface in java.awt">Graphics</A> graphics,
<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/PageFormat.html" title="class or interface in java.awt.print">PageFormat</A> pageFormat,
int pageIndex)</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/pdfbox/pdmodel/PDPage.html#setActions(org.pdfbox.pdmodel.interactive.action.PDPageAdditionalActions)">setActions</A></B>(<A HREF="../../../org/pdfbox/pdmodel/interactive/action/PDPageAdditionalActions.html" title="class in org.pdfbox.pdmodel.interactive.action">PDPageAdditionalActions</A> actions)</CODE>
<BR>
Set the page actions.</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/pdfbox/pdmodel/PDPage.html#setAnnotations(java.util.List)">setAnnotations</A></B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> annots)</CODE>
<BR>
This will set the list of annotations.</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/pdfbox/pdmodel/PDPage.html#setArtBox(org.pdfbox.pdmodel.common.PDRectangle)">setArtBox</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> artBox)</CODE>
<BR>
This will set the ArtBox for this page.</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/pdfbox/pdmodel/PDPage.html#setBleedBox(org.pdfbox.pdmodel.common.PDRectangle)">setBleedBox</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> bleedBox)</CODE>
<BR>
This will set the BleedBox for this page.</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/pdfbox/pdmodel/PDPage.html#setContents(org.pdfbox.pdmodel.common.PDStream)">setContents</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDStream.html" title="class in org.pdfbox.pdmodel.common">PDStream</A> contents)</CODE>
<BR>
This will set the contents of this page.</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/pdfbox/pdmodel/PDPage.html#setCropBox(org.pdfbox.pdmodel.common.PDRectangle)">setCropBox</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> cropBox)</CODE>
<BR>
This will set the CropBox for this page.</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/pdfbox/pdmodel/PDPage.html#setMediaBox(org.pdfbox.pdmodel.common.PDRectangle)">setMediaBox</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> mediaBox)</CODE>
<BR>
This will set the mediaBox for this page.</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/pdfbox/pdmodel/PDPage.html#setMetadata(org.pdfbox.pdmodel.common.PDMetadata)">setMetadata</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDMetadata.html" title="class in org.pdfbox.pdmodel.common">PDMetadata</A> meta)</CODE>
<BR>
Set the metadata for this 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/pdfbox/pdmodel/PDPage.html#setParent(org.pdfbox.pdmodel.PDPageNode)">setParent</A></B>(<A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel">PDPageNode</A> parent)</CODE>
<BR>
This will set the parent of this page.</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/pdfbox/pdmodel/PDPage.html#setResources(org.pdfbox.pdmodel.PDResources)">setResources</A></B>(<A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A> resources)</CODE>
<BR>
This will set the resources for this page.</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/pdfbox/pdmodel/PDPage.html#setRotation(int)">setRotation</A></B>(int rotation)</CODE>
<BR>
This will set the rotation for this page.</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/pdfbox/pdmodel/PDPage.html#setThreadBeads(java.util.List)">setThreadBeads</A></B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> beads)</CODE>
<BR>
This will set the list of thread beads.</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/pdfbox/pdmodel/PDPage.html#setTrimBox(org.pdfbox.pdmodel.common.PDRectangle)">setTrimBox</A></B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> trimBox)</CODE>
<BR>
This will set the TrimBox for this page.</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/pdfbox/pdmodel/PDPage.html#updateLastModified()">updateLastModified</A></B>()</CODE>
<BR>
This will update the last modified time for the page object.</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">
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></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">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Field Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="PAGE_SIZE_LETTER"><!-- --></A><H3>
PAGE_SIZE_LETTER</H3>
<PRE>
public static final <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>PAGE_SIZE_LETTER</B></PRE>
<DL>
<DD>A page size of LETTER or 8.5x11.
<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">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="PDPage()"><!-- --></A><H3>
PDPage</H3>
<PRE>
public <B>PDPage</B>()</PRE>
<DL>
<DD>Creates a new instance of PDPage with a size of 8.5x11.
<P>
</DL>
<HR>
<A NAME="PDPage(org.pdfbox.cos.COSDictionary)"><!-- --></A><H3>
PDPage</H3>
<PRE>
public <B>PDPage</B>(<A HREF="../../../org/pdfbox/cos/COSDictionary.html" title="class in org.pdfbox.cos">COSDictionary</A> pageDic)</PRE>
<DL>
<DD>Creates a new instance of PDPage.
<P>
<DT><B>Parameters:</B><DD><CODE>pageDic</CODE> - The existing page dictionary.</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="getCOSObject()"><!-- --></A><H3>
getCOSObject</H3>
<PRE>
public <A HREF="../../../org/pdfbox/cos/COSBase.html" title="class in org.pdfbox.cos">COSBase</A> <B>getCOSObject</B>()</PRE>
<DL>
<DD>Convert this standard java object to a COS object.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/pdfbox/pdmodel/common/COSObjectable.html#getCOSObject()">getCOSObject</A></CODE> in interface <CODE><A HREF="../../../org/pdfbox/pdmodel/common/COSObjectable.html" title="interface in org.pdfbox.pdmodel.common">COSObjectable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The cos object that matches this Java object.</DL>
</DD>
</DL>
<HR>
<A NAME="getCOSDictionary()"><!-- --></A><H3>
getCOSDictionary</H3>
<PRE>
public <A HREF="../../../org/pdfbox/cos/COSDictionary.html" title="class in org.pdfbox.cos">COSDictionary</A> <B>getCOSDictionary</B>()</PRE>
<DL>
<DD>This will get the underlying dictionary that this class acts on.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The underlying dictionary for this class.</DL>
</DD>
</DL>
<HR>
<A NAME="getParent()"><!-- --></A><H3>
getParent</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel">PDPageNode</A> <B>getParent</B>()</PRE>
<DL>
<DD>This is the parent page node. The parent is a required element of the
page. This will be null until this page is added to the document.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The parent to this page.</DL>
</DD>
</DL>
<HR>
<A NAME="setParent(org.pdfbox.pdmodel.PDPageNode)"><!-- --></A><H3>
setParent</H3>
<PRE>
public void <B>setParent</B>(<A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel">PDPageNode</A> parent)</PRE>
<DL>
<DD>This will set the parent of this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>parent</CODE> - The parent to this page node.</DL>
</DD>
</DL>
<HR>
<A NAME="updateLastModified()"><!-- --></A><H3>
updateLastModified</H3>
<PRE>
public void <B>updateLastModified</B>()</PRE>
<DL>
<DD>This will update the last modified time for the page object.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getLastModified()"><!-- --></A><H3>
getLastModified</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html" title="class or interface in java.util">Calendar</A> <B>getLastModified</B>()
throws <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
<DL>
<DD>This will get the date that the content stream was last modified. This
may return null.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The date the content stream was last modified.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - If there is an error accessing the date information.</DL>
</DD>
</DL>
<HR>
<A NAME="getResources()"><!-- --></A><H3>
getResources</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A> <B>getResources</B>()</PRE>
<DL>
<DD>This will get the resources at this page and not look up the hierarchy.
This attribute is inheritable, and findResources() should probably used.
This will return null if no resources are available at this level.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The resources at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="findResources()"><!-- --></A><H3>
findResources</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A> <B>findResources</B>()</PRE>
<DL>
<DD>This will find the resources for this page by looking up the hierarchy until
it finds them.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The resources at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="setResources(org.pdfbox.pdmodel.PDResources)"><!-- --></A><H3>
setResources</H3>
<PRE>
public void <B>setResources</B>(<A HREF="../../../org/pdfbox/pdmodel/PDResources.html" title="class in org.pdfbox.pdmodel">PDResources</A> resources)</PRE>
<DL>
<DD>This will set the resources for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>resources</CODE> - The new resources for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getMediaBox()"><!-- --></A><H3>
getMediaBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>getMediaBox</B>()</PRE>
<DL>
<DD>A rectangle, expressed
in default user space units, defining the boundaries of the physical
medium on which the page is intended to be displayed or printed
This will get the MediaBox at this page and not look up the hierarchy.
This attribute is inheritable, and findMediaBox() should probably used.
This will return null if no MediaBox are available at this level.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The MediaBox at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="findMediaBox()"><!-- --></A><H3>
findMediaBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>findMediaBox</B>()</PRE>
<DL>
<DD>This will find the MediaBox for this page by looking up the hierarchy until
it finds them.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The MediaBox at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="setMediaBox(org.pdfbox.pdmodel.common.PDRectangle)"><!-- --></A><H3>
setMediaBox</H3>
<PRE>
public void <B>setMediaBox</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> mediaBox)</PRE>
<DL>
<DD>This will set the mediaBox for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mediaBox</CODE> - The new mediaBox for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getCropBox()"><!-- --></A><H3>
getCropBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>getCropBox</B>()</PRE>
<DL>
<DD>A rectangle, expressed in default user space units,
defining the visible region of default user space. When the page is displayed
or printed, its contents are to be clipped (cropped) to this rectangle
and then imposed on the output medium in some implementationdefined
manner
This will get the CropBox at this page and not look up the hierarchy.
This attribute is inheritable, and findCropBox() should probably used.
This will return null if no CropBox is available at this level.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The CropBox at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="findCropBox()"><!-- --></A><H3>
findCropBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>findCropBox</B>()</PRE>
<DL>
<DD>This will find the CropBox for this page by looking up the hierarchy until
it finds them.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The CropBox at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="setCropBox(org.pdfbox.pdmodel.common.PDRectangle)"><!-- --></A><H3>
setCropBox</H3>
<PRE>
public void <B>setCropBox</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> cropBox)</PRE>
<DL>
<DD>This will set the CropBox for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>cropBox</CODE> - The new CropBox for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getBleedBox()"><!-- --></A><H3>
getBleedBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>getBleedBox</B>()</PRE>
<DL>
<DD>A rectangle, expressed in default user space units, defining
the region to which the contents of the page should be clipped
when output in a production environment. The default is the CropBox.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The BleedBox attribute.</DL>
</DD>
</DL>
<HR>
<A NAME="setBleedBox(org.pdfbox.pdmodel.common.PDRectangle)"><!-- --></A><H3>
setBleedBox</H3>
<PRE>
public void <B>setBleedBox</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> bleedBox)</PRE>
<DL>
<DD>This will set the BleedBox for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>bleedBox</CODE> - The new BleedBox for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getTrimBox()"><!-- --></A><H3>
getTrimBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>getTrimBox</B>()</PRE>
<DL>
<DD>A rectangle, expressed in default user space units, defining
the intended dimensions of the finished page after trimming.
The default is the CropBox.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The TrimBox attribute.</DL>
</DD>
</DL>
<HR>
<A NAME="setTrimBox(org.pdfbox.pdmodel.common.PDRectangle)"><!-- --></A><H3>
setTrimBox</H3>
<PRE>
public void <B>setTrimBox</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> trimBox)</PRE>
<DL>
<DD>This will set the TrimBox for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>trimBox</CODE> - The new TrimBox for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getArtBox()"><!-- --></A><H3>
getArtBox</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> <B>getArtBox</B>()</PRE>
<DL>
<DD>A rectangle, expressed in default user space units, defining
the extent of the page's meaningful content (including potential
white space) as intended by the page's creator The default isthe CropBox.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The ArtBox attribute.</DL>
</DD>
</DL>
<HR>
<A NAME="setArtBox(org.pdfbox.pdmodel.common.PDRectangle)"><!-- --></A><H3>
setArtBox</H3>
<PRE>
public void <B>setArtBox</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDRectangle.html" title="class in org.pdfbox.pdmodel.common">PDRectangle</A> artBox)</PRE>
<DL>
<DD>This will set the ArtBox for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>artBox</CODE> - The new ArtBox for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getRotation()"><!-- --></A><H3>
getRotation</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Integer.html" title="class or interface in java.lang">Integer</A> <B>getRotation</B>()</PRE>
<DL>
<DD>A value representing the rotation. This will be null if not set at this level
The number of degrees by which the page should
be rotated clockwise when displayed or printed. The value must be a multiple
of 90.
This will get the rotation at this page and not look up the hierarchy.
This attribute is inheritable, and findRotation() should probably used.
This will return null if no rotation is available at this level.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The rotation at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="findRotation()"><!-- --></A><H3>
findRotation</H3>
<PRE>
public int <B>findRotation</B>()</PRE>
<DL>
<DD>This will find the rotation for this page by looking up the hierarchy until
it finds them.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The rotation at this level in the hierarchy.</DL>
</DD>
</DL>
<HR>
<A NAME="setRotation(int)"><!-- --></A><H3>
setRotation</H3>
<PRE>
public void <B>setRotation</B>(int rotation)</PRE>
<DL>
<DD>This will set the rotation for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rotation</CODE> - The new rotation for this page.</DL>
</DD>
</DL>
<HR>
<A NAME="getContents()"><!-- --></A><H3>
getContents</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDStream.html" title="class in org.pdfbox.pdmodel.common">PDStream</A> <B>getContents</B>()
throws <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
<DL>
<DD>This will get the contents of the PDF Page, in the case that the contents
of the page is an array then then the entire array of streams will be
be wrapped and appear as a single stream.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The page content stream.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - If there is an error obtaining the stream.</DL>
</DD>
</DL>
<HR>
<A NAME="setContents(org.pdfbox.pdmodel.common.PDStream)"><!-- --></A><H3>
setContents</H3>
<PRE>
public void <B>setContents</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDStream.html" title="class in org.pdfbox.pdmodel.common">PDStream</A> contents)</PRE>
<DL>
<DD>This will set the contents of this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>contents</CODE> - The new contents of the page.</DL>
</DD>
</DL>
<HR>
<A NAME="getThreadBeads()"><!-- --></A><H3>
getThreadBeads</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>getThreadBeads</B>()</PRE>
<DL>
<DD>This will get a list of PDThreadBead objects, which are article threads in the
document. This will return an empty list of there are no thread beads.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>A list of article threads on this page.</DL>
</DD>
</DL>
<HR>
<A NAME="setThreadBeads(java.util.List)"><!-- --></A><H3>
setThreadBeads</H3>
<PRE>
public void <B>setThreadBeads</B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> beads)</PRE>
<DL>
<DD>This will set the list of thread beads.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>beads</CODE> - A list of PDThreadBead objects or null.</DL>
</DD>
</DL>
<HR>
<A NAME="getMetadata()"><!-- --></A><H3>
getMetadata</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/common/PDMetadata.html" title="class in org.pdfbox.pdmodel.common">PDMetadata</A> <B>getMetadata</B>()</PRE>
<DL>
<DD>Get the metadata that is part of the document catalog. This will
return null if there is no meta data for this object.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The metadata for this object.</DL>
</DD>
</DL>
<HR>
<A NAME="setMetadata(org.pdfbox.pdmodel.common.PDMetadata)"><!-- --></A><H3>
setMetadata</H3>
<PRE>
public void <B>setMetadata</B>(<A HREF="../../../org/pdfbox/pdmodel/common/PDMetadata.html" title="class in org.pdfbox.pdmodel.common">PDMetadata</A> meta)</PRE>
<DL>
<DD>Set the metadata for this object. This can be null.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>meta</CODE> - The meta data for this object.</DL>
</DD>
</DL>
<HR>
<A NAME="convertToImage()"><!-- --></A><H3>
convertToImage</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImage.html" title="class or interface in java.awt.image">BufferedImage</A> <B>convertToImage</B>()
throws <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
<DL>
<DD>Convert this page to an output image.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>A graphical representation of this page.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - If there is an error drawing to the image.</DL>
</DD>
</DL>
<HR>
<A NAME="getActions()"><!-- --></A><H3>
getActions</H3>
<PRE>
public <A HREF="../../../org/pdfbox/pdmodel/interactive/action/PDPageAdditionalActions.html" title="class in org.pdfbox.pdmodel.interactive.action">PDPageAdditionalActions</A> <B>getActions</B>()</PRE>
<DL>
<DD>Get the page actions.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The Actions for this Page</DL>
</DD>
</DL>
<HR>
<A NAME="setActions(org.pdfbox.pdmodel.interactive.action.PDPageAdditionalActions)"><!-- --></A><H3>
setActions</H3>
<PRE>
public void <B>setActions</B>(<A HREF="../../../org/pdfbox/pdmodel/interactive/action/PDPageAdditionalActions.html" title="class in org.pdfbox.pdmodel.interactive.action">PDPageAdditionalActions</A> actions)</PRE>
<DL>
<DD>Set the page actions.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>actions</CODE> - The actions for the page.</DL>
</DD>
</DL>
<HR>
<A NAME="getAnnotations()"><!-- --></A><H3>
getAnnotations</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>getAnnotations</B>()
throws <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
<DL>
<DD>This will return a list of the Annotations for this page.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>List of the PDAnnotation objects.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - If there is an error while creating the annotations.</DL>
</DD>
</DL>
<HR>
<A NAME="setAnnotations(java.util.List)"><!-- --></A><H3>
setAnnotations</H3>
<PRE>
public void <B>setAnnotations</B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/util/List.html" title="class or interface in java.util">List</A> annots)</PRE>
<DL>
<DD>This will set the list of annotations.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>annots</CODE> - The new list of annotations.</DL>
</DD>
</DL>
<HR>
<A NAME="print(java.awt.Graphics, java.awt.print.PageFormat, int)"><!-- --></A><H3>
print</H3>
<PRE>
public int <B>print</B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Graphics.html" title="class or interface in java.awt">Graphics</A> graphics,
<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/PageFormat.html" title="class or interface in java.awt.print">PageFormat</A> pageFormat,
int pageIndex)
throws <A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/PrinterException.html" title="class or interface in java.awt.print">PrinterException</A></PRE>
<DL>
<DD>
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html#print(java.awt.Graphics, java.awt.print.PageFormat, int)" title="class or interface in java.awt.print">print</A></CODE> in interface <CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/Printable.html" title="class or interface in java.awt.print">Printable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/print/PrinterException.html" title="class or interface in java.awt.print">PrinterException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="equals(java.lang.Object)"><!-- --></A><H3>
equals</H3>
<PRE>
public boolean <B>equals</B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> other)</PRE>
<DL>
<DD>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="hashCode()"><!-- --></A><H3>
hashCode</H3>
<PRE>
public int <B>hashCode</B>()</PRE>
<DL>
<DD>
<P>
<DD><DL>
</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=3 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="class-use/PDPage.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</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/pdfbox/pdmodel/PDEmbeddedFilesNameTreeNode.html" title="class in org.pdfbox.pdmodel"><B>PREV CLASS</B></A>
<A HREF="../../../org/pdfbox/pdmodel/PDPageNode.html" title="class in org.pdfbox.pdmodel"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="PDPage.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>
</BODY>
</HTML>
|