Uses of Class
com.pff.PSTObject

Packages that use PSTObject
com.pff   
 

Uses of PSTObject in com.pff
 

Subclasses of PSTObject in com.pff
 class PSTActivity
          PSTActivity represents Journal entries
 class PSTAppointment
          PSTAppointment is for Calendar items
 class PSTAttachment
          Class containing attachment information
 class PSTContact
          Class for Contacts
 class PSTFolder
          Represents a folder in the PST File Allows you to access child folders or items.
 class PSTMessage
          PST Message contains functions that are common across most MAPI objects.
 class PSTMessageStore
          Object that represents the message store.
 class PSTRss
          Object that represents a RSS item
 class PSTTask
          Object that represents Task items
 

Fields in com.pff with type parameters of type PSTObject
protected  java.util.LinkedHashMap<java.lang.String,java.util.HashMap<DescriptorIndexNode,PSTObject>> PSTObject.children
           
 

Methods in com.pff that return PSTObject
static PSTObject PSTObject.detectAndLoadPSTObject(PSTFile theFile, long descriptorIndex)
          Detect and load a PST Object from a file with the specified descriptor index
 PSTObject PSTFolder.getNextChild()
          Get the next child of this folder As there could be thousands of emails, we have these kind of cursor operations
 

Methods in com.pff that return types with arguments of type PSTObject
 java.util.Vector<PSTObject> PSTFolder.getChildren(int numberToReturn)
          get some children from the folder This is implemented as a cursor of sorts, as there could be thousands and that is just too many to process at once.