Uses of Class
loci.poi.hpsf.Property
-
Packages that use Property Package Description loci.poi.hpsf -
-
Uses of Property in loci.poi.hpsf
Subclasses of Property in loci.poi.hpsf Modifier and Type Class Description class
CustomProperty
This class represents custum properties in the document summary information stream.class
MutableProperty
Adds writing capability to theProperty
class.Fields in loci.poi.hpsf declared as Property Modifier and Type Field Description protected Property[]
Section. properties
Methods in loci.poi.hpsf that return Property Modifier and Type Method Description Property[]
MutableSection. getProperties()
Gets this section's properties.Property[]
PropertySet. getProperties()
Convenience method returning theProperty
array contained in this property set.Property[]
Section. getProperties()
Returns this section's properties.Property[]
SpecialPropertySet. getProperties()
Methods in loci.poi.hpsf with parameters of type Property Modifier and Type Method Description void
MutableSection. setProperties(Property[] properties)
Sets this section's properties.void
MutableSection. setProperty(Property p)
Sets a property.static void
TypeWriter. writeToStream(OutputStream out, Property[] properties, int codepage)
Writes an array ofProperty
instances to an output stream according to the Horrible Property Stream Format.Constructors in loci.poi.hpsf with parameters of type Property Constructor Description CustomProperty(Property property)
Creates aCustomProperty
without a name by copying the underlyingProperty
' attributes.CustomProperty(Property property, String name)
Creates aCustomProperty
with a name.MutableProperty(Property p)
Creates aMutableProperty
as a copy of an existingProperty
.
-