Uses of Class
org.apache.poi.poifs.property.Property

Packages that use Property
org.apache.poi.poifs.filesystem filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface. 
org.apache.poi.poifs.property property package contains high and low level Property structures for POIFS. 
org.apache.poi.poifs.storage storage package contains low level binary structures for POIFS's implementation of the OLE 2 Compound Document Format. 
 

Uses of Property in org.apache.poi.poifs.filesystem
 

Methods in org.apache.poi.poifs.filesystem that return Property
protected  Property EntryNode.getProperty()
          grant access to the property
 

Constructors in org.apache.poi.poifs.filesystem with parameters of type Property
EntryNode(Property property, DirectoryNode parent)
          create a DocumentNode.
 

Uses of Property in org.apache.poi.poifs.property
 

Subclasses of Property in org.apache.poi.poifs.property
 class DirectoryProperty
          Directory property
 class DocumentProperty
          Trivial extension of Property for POIFSDocuments
 class RootProperty
          Root property
 

Fields in org.apache.poi.poifs.property with type parameters of type Property
protected  java.util.List<Property> PropertyTableBase._properties
           
 

Methods in org.apache.poi.poifs.property that return types with arguments of type Property
 java.util.Iterator<Property> DirectoryProperty.getChildren()
          Get an iterator over the children of this Parent; all elements are instances of Property.
 

Methods in org.apache.poi.poifs.property with parameters of type Property
 void Parent.addChild(Property property)
          Add a new child to the collection of children
 void DirectoryProperty.addChild(Property property)
          Add a new child to the collection of children
 void PropertyTableBase.addProperty(Property property)
          Add a property to the list of properties we manage
 boolean DirectoryProperty.changeName(Property property, java.lang.String newName)
          Change a Property's name
 int DirectoryProperty.PropertyComparator.compare(Property o1, Property o2)
          compare method.
 boolean DirectoryProperty.deleteChild(Property property)
          Delete a Property
 void PropertyTableBase.removeProperty(Property property)
          Remove a property from the list of properties we manage
 

Constructor parameters in org.apache.poi.poifs.property with type arguments of type Property
PropertyTableBase(HeaderBlock header_block, java.util.List<Property> properties)
          Reading constructor (used when we've read in a file and we want to extract the property table from it).
 

Uses of Property in org.apache.poi.poifs.storage
 

Method parameters in org.apache.poi.poifs.storage with type arguments of type Property
static BlockWritable[] PropertyBlock.createPropertyBlockArray(POIFSBigBlockSize bigBlockSize, java.util.List<Property> properties)
          Create an array of PropertyBlocks from an array of Property instances, creating empty Property instances to make up any shortfall
 



Copyright 2012 The Apache Software Foundation or its licensors, as applicable.