Uses of Class
org.apache.poi.hslf.record.Record

Packages that use Record
org.apache.poi.hslf   
org.apache.poi.hslf.dev   
org.apache.poi.hslf.model   
org.apache.poi.hslf.record   
org.apache.poi.hslf.usermodel   
 

Uses of Record in org.apache.poi.hslf
 

Methods in org.apache.poi.hslf that return Record
 Record[] HSLFSlideShow.getRecords()
          Returns an array of all the records found in the slideshow
 

Uses of Record in org.apache.poi.hslf.dev
 

Methods in org.apache.poi.hslf.dev that return Record
static Record UserEditAndPersistListing.findRecordAtPos(int pos)
           
 

Methods in org.apache.poi.hslf.dev with parameters of type Record
 int SlideShowRecordDumper.getDiskLen(Record r)
           
 void SlideShowRecordDumper.walkTree(int depth, int pos, Record[] records)
           
 

Uses of Record in org.apache.poi.hslf.model
 

Methods in org.apache.poi.hslf.model with parameters of type Record
protected static void Sheet.findTextRuns(Record[] records, java.util.Vector found)
          Scans through the supplied record array, looking for a TextHeaderAtom followed by one of a TextBytesAtom or a TextCharsAtom.
 

Uses of Record in org.apache.poi.hslf.record
 

Subclasses of Record in org.apache.poi.hslf.record
 class ColorSchemeAtom
          A ColorSchemeAtom (type 2032).
 class DocumentAtom
          A Document Atom (type 1001).
 class DummyPositionSensitiveRecordWithChildren
          If we come across a record we know has children of (potential) interest, but where the record itself is boring, but where other records may care about where this one lives, we create one of these.
 class DummyRecordWithChildren
          If we come across a record we know has children of (potential) interest, but where the record itself is boring, we create one of these.
 class EscherTextboxWrapper
          A wrapper around a DDF (Escher) EscherTextbox Record.
 class Notes
          Master container for Notes.
 class NotesAtom
          A Notes Atom (type 1009).
 class PersistPtrHolder
          General holder for PersistPtrFullBlock and PersistPtrIncrementalBlock records.
 class PositionDependentRecordAtom
          A special (and dangerous) kind of Record Atom that cares about where it lives on the disk, or who has other Atoms that care about where this is on the disk.
 class PositionDependentRecordContainer
          A special (and dangerous) kind of Record Container, for which other Atoms care about where this one lives on disk.
 class PPDrawing
          These are actually wrappers onto Escher drawings.
 class RecordAtom
          Abstract class which all atom records will extend.
 class RecordContainer
          Abstract class which all container records will extend.
 class Slide
          Master container for Slides.
 class SlideAtom
          A Slide Atom (type 1007).
 class SlideListWithText
          These are tricky beasts.
 class SlidePersistAtom
          A SlidePersist Atom (type 1011).
 class TextBytesAtom
          A TextBytesAtom (type 4008).
 class TextCharsAtom
          A TextCharsAtom (type 4000).
 class TextHeaderAtom
          A TextHeaderAtom (type 3999).
 class UnknownRecordPlaceholder
          If we come across a record we don't know about, we create one of these.
 class UserEditAtom
          A UserEdit Atom (type 4085).
 

Methods in org.apache.poi.hslf.record that return Record
 Record[] DummyRecordWithChildren.getChildRecords()
          Return any children
 Record[] DummyPositionSensitiveRecordWithChildren.getChildRecords()
          Return any children
 Record[] EscherTextboxWrapper.getChildRecords()
          Return any children
 Record[] Notes.getChildRecords()
          Return any children
 Record[] RecordAtom.getChildRecords()
          We're an atom, returns null
 Record[] PPDrawing.getChildRecords()
          We're pretending to be an atom, so return null
 Record[] SlideListWithText.getChildRecords()
          We're pretending to be an atom, so return null
 Record[] SlideListWithText.SlideAtomsSet.getSlideRecords()
          Get the Text related records for this slide
 Record[] Slide.getChildRecords()
          Return any children
abstract  Record[] Record.getChildRecords()
          Fetch all the child records of this record If this record is an atom, will return null If this record is a non-atom, but has no children, will return an empty array
static Record[] Record.findChildRecords(byte[] b, int start, int len)
          Default method for finding child records of a given record
static Record Record.createRecordForType(long type, byte[] b, int start, int len)
          For a given type (little endian bytes 3 and 4 in record header), byte array, start position and length: will return a Record object that will handle that record Remember that while PPT stores the record lengths as 8 bytes short (not including the size of the header), this code assumes you're passing in corrected lengths
 

Methods in org.apache.poi.hslf.record with parameters of type Record
 void RecordContainer.writeOut(byte headerA, byte headerB, long type, Record[] children, java.io.OutputStream out)
          Write out our header, and our children.
 

Constructors in org.apache.poi.hslf.record with parameters of type Record
SlideListWithText.SlideAtomsSet(SlidePersistAtom s, Record[] r)
          Create one to hold the Records for one Slide's text
 

Uses of Record in org.apache.poi.hslf.usermodel
 

Methods in org.apache.poi.hslf.usermodel that return Record
 Record[] SlideShow.getMostRecentCoreRecords()
          Returns an array of the most recent version of all the interesting records
 



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