Package org.apache.poi.hwpf.usermodel
Interface Notes
- 
- All Known Implementing Classes:
 NotesImpl
public interface NotesUser-friendly interface to access document notes information 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetNoteAnchorPosition(int index)Returns the location of note anchor in main textspaceintgetNoteIndexByAnchorPosition(int anchorPosition)Returns index of note (if exists, otherwise -1) with specified anchor positionintgetNotesCount()Returns count of notes in documentintgetNoteTextEndOffset(int index)Returns the end offset of the text corresponding to the reference within the footnote text address spaceintgetNoteTextStartOffset(int index)Returns the start offset of the text corresponding to the reference within the footnote text address space 
 - 
 
- 
- 
Method Detail
- 
getNoteAnchorPosition
int getNoteAnchorPosition(int index)
Returns the location of note anchor in main textspace 
- 
getNotesCount
int getNotesCount()
Returns count of notes in document 
- 
getNoteIndexByAnchorPosition
int getNoteIndexByAnchorPosition(int anchorPosition)
Returns index of note (if exists, otherwise -1) with specified anchor position 
- 
getNoteTextEndOffset
int getNoteTextEndOffset(int index)
Returns the end offset of the text corresponding to the reference within the footnote text address space 
- 
getNoteTextStartOffset
int getNoteTextStartOffset(int index)
Returns the start offset of the text corresponding to the reference within the footnote text address space 
 - 
 
 -