Save This Page
Home » iText-src-2.1.3 » com.lowagie » text » pdf » collection » [javadoc | source]
com.lowagie.text.pdf.collection
public class: PdfTargetDictionary [javadoc | source]
java.lang.Object
   com.lowagie.text.pdf.PdfObject
      com.lowagie.text.pdf.PdfDictionary
         com.lowagie.text.pdf.collection.PdfTargetDictionary
Fields inherited from com.lowagie.text.pdf.PdfDictionary:
FONT,  OUTLINES,  PAGE,  PAGES,  CATALOG,  hashMap
Fields inherited from com.lowagie.text.pdf.PdfObject:
BOOLEAN,  NUMBER,  STRING,  NAME,  ARRAY,  DICTIONARY,  STREAM,  NULL,  INDIRECT,  NOTHING,  TEXT_PDFDOCENCODING,  TEXT_UNICODE,  bytes,  type,  indRef
Constructor:
 public PdfTargetDictionary(PdfTargetDictionary nested) 
    Creates dictionary referring to a target document that is the parent of the current document.
    Parameters:
    nested - null if this is the actual target, another target if this is only an intermediate target.
 public PdfTargetDictionary(boolean child) 
Method from com.lowagie.text.pdf.collection.PdfTargetDictionary Summary:
setAdditionalPath,   setEmbeddedFileName,   setFileAttachmentIndex,   setFileAttachmentName,   setFileAttachmentPage,   setFileAttachmentPagename
Methods from com.lowagie.text.pdf.PdfDictionary:
contains,   get,   getAsArray,   getAsBoolean,   getAsDict,   getAsIndirectObject,   getAsName,   getAsNumber,   getAsStream,   getAsString,   getDirectObject,   getKeys,   isCatalog,   isFont,   isOutlineTree,   isPage,   isPages,   merge,   mergeDifferent,   put,   putAll,   putEx,   remove,   size,   toPdf,   toString
Methods from com.lowagie.text.pdf.PdfObject:
canBeInObjStm,   getBytes,   getIndRef,   isArray,   isBoolean,   isDictionary,   isIndirect,   isName,   isNull,   isNumber,   isStream,   isString,   length,   setContent,   setIndRef,   toPdf,   toString,   type
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from com.lowagie.text.pdf.collection.PdfTargetDictionary Detail:
 public  void setAdditionalPath(PdfTargetDictionary nested) 
    If this dictionary refers to an intermediate target, you can add the next target in the sequence.
 public  void setEmbeddedFileName(String target) 
    If this dictionary refers to a child that is a document level attachment, you need to specify the name that was used to attach the document.
 public  void setFileAttachmentIndex(int annotation) 
    If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page with setFileAttachmentPage or setFileAttachmentPageName, and then specify the index of the attachment added to this page (or use setFileAttachmentName).
 public  void setFileAttachmentName(String name) 
    If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page with setFileAttachmentPage or setFileAttachmentPageName, and then specify the name of the attachment added to this page (or use setFileAttachmentIndex).
 public  void setFileAttachmentPage(int page) 
    If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page number (or use setFileAttachmentPagename to specify a named destination). Once you have specified the page, you still need to specify the attachment using another method.
 public  void setFileAttachmentPagename(String name) 
    If this dictionary refers to a child that is a file attachment added to a page, you need to specify the name of the page (or use setFileAttachmentPage to specify the page number). Once you have specified the page, you still need to specify the attachment using another method.