Interface Document
- All Superinterfaces:
Item,MetadataProvider,PermissionsProvider<Document>,PropertiesProvider
- All Known Subinterfaces:
SerializableDocument
- All Known Implementing Classes:
FilteredDocument
- The first dimension are the
Pages. Pages are mere containers for data which can be displayed or manipulated. Each page consists of 1-nAbstractPageSegments, which occupy the document's layers for a page (see below). - The second dimension are the layers. Layers are virtual slots in the stack of data which represents a page. Layers are defined for the document as a whole, but pages are not required to have a page segment for each defined layer.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumAn enum consisting of the default document states.static interfaceThis is a marker interface to be implemented by objects serving as state designators for documents. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe base resolution.static final StringA user property key for the name of the document to be presented to users such as in a window title bar etc..static final StringA user property key for the ID of an item in an archive with which the document is associated.static final StringA user property key for the name of the file from which the document originated.static final StringProperty change key for the 'name' property.static final StringA property name prefix used for bridged property changes from pages.static final StringA property name prefix used for bridged property changes from user properties.static final StringProperty change key for the 'state' property. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddDocumentInterceptor(DocumentInterceptor interceptor) Register aDocumentInterceptorto this document instance.voidaddDocumentListener(DocumentListener listener) Register aDocumentListenerto this document instance.booleanclose()Closes aDocument.voiddispose()Disposes of aDocumentperforming necessary clean-up tasks.getName()Gets the document's name.getPage(int pageIndex) Convenience method: return the page at the given page index.getPage(int pageIndex, boolean create) Return the page at the given page index.intConvenience method: determine the number of pages in this document.intgetPageIndex(Page page) Convenience method: determine the index of a page in this document.org.jadice.util.glazedlists.EventList<Page> getPages()Returns a list of pages in the document.getState()booleanReturn whether or not thisDocumenthas been disposed of.voidremoveDocumentInterceptor(DocumentInterceptor interceptor) Unregister aDocumentInterceptorfrom this document.voidremoveDocumentListener(DocumentListener listener) Unregister aDocumentListenerfrom this document.voidSets the document's name.booleansetState(Document.State state) Sets the current state of theDocument.Methods inherited from interface com.levigo.jadice.document.metadata.MetadataProvider
getMetadataMethods inherited from interface com.levigo.jadice.document.PermissionsProvider
getPermissionsMethods inherited from interface com.levigo.jadice.document.util.PropertiesProvider
getProperties
-
Field Details
-
PROPERTY_STATE
Property change key for the 'state' property.- See Also:
-
PROPERTY_NAME
Property change key for the 'name' property.- See Also:
-
PROPERTY_PREFIX_PAGE
A property name prefix used for bridged property changes from pages.- See Also:
-
PROPERTY_PREFIX_USER_PROPERTY
A property name prefix used for bridged property changes from user properties.- See Also:
-
PROPERTY_KEY_FILE_NAME
A user property key for the name of the file from which the document originated.- See Also:
-
PROPERTY_KEY_DISPLAY_NAME
A user property key for the name of the document to be presented to users such as in a window title bar etc..- See Also:
-
PROPERTY_KEY_DOCUMENT_ID
A user property key for the ID of an item in an archive with which the document is associated.- See Also:
-
BASE_RESOLUTION
static final int BASE_RESOLUTIONThe base resolution. All calculations are based on this resolution. The base resolution is currently a 7200'th of an inch.- See Also:
-
-
Method Details
-
addDocumentListener
Register aDocumentListenerto this document instance.- Parameters:
listener- the listener to register- Throws:
IllegalArgumentException- if parameter isnullIllegalStateException- if called on aDocumentwhich has been disposed of
-
addDocumentInterceptor
Register aDocumentInterceptorto this document instance.- Parameters:
interceptor- the interceptor to register- Throws:
IllegalArgumentException- if parameter isnullIllegalStateException- if called on aDocumentwhich has been disposed of.
-
close
boolean close()Closes aDocument. This includes performing a state transition toDocument.BasicState.CLOSEDand cleaning up resources. Both will only happen if all registeredDocumentInterceptors agree with the state change. In usual cases, this method should be preferred to callingdispose().- Returns:
- flag indicating whether the process passed successfully or not
- See Also:
-
dispose
void dispose()Disposes of a
Documentperforming necessary clean-up tasks. DisposedDocuments will haveDocument.BasicState.CLOSEDas theirDocument.State. This method is not expected to ask registeredDocumentInterceptors for their consent about the state transition.DocumentListeners may or may not be informed about the state change. In most cases,close()should be used instead of this method.Since cleaning up releases any resources held by this
Document, it will no longer be practically useful afterwards. ADocumentwhich has been disposed of will refuse further changes on itself and may throw Exceptions if methods are called.Before calling dispose it is for this reason important to make sure that the
Documentto be disposed of is not registered with any other (GUI or non-GUI) component which might call methods later on. -
isDisposed
boolean isDisposed() -
getName
String getName()Gets the document's name. -
getPage
Convenience method: return the page at the given page index. Equivalent to. As an added convenience, callers need not lock the page list in order to be thread-safe.getPages().get(pageNumber)- Parameters:
pageIndex- the 0-based index of the page to be returned.- Returns:
- a
Pageornullif the page doesn't exist.
-
getPage
Return the page at the given page index. Create it, if there is no page at this index at this point. As an added convenience, callers need not lock the page list in order to be thread-safe.- Parameters:
pageIndex- the 0-based index of the page to be returned.create- flag indicating if the page should be created if it doesn't exist.- Returns:
- a
Pageornullif the page doesn't exist andcreateisfalse. - Throws:
IndexOutOfBoundsException- if pageIndex < 0IllegalStateException- if called with parametercreate==trueon aDocumentwhich has been disposed of
-
getPageCount
int getPageCount()Convenience method: determine the number of pages in this document. Equivalent to. As an added convenience, callers need not lock the page list in order to be thread-safe.getPages().size()- Returns:
- int the page number count
-
getPageIndex
Convenience method: determine the index of a page in this document. Equivalent to. As an added convenience, callers need not lock the page list in order to be thread-safe.getPages().indexOf(page)- Parameters:
page- to search for- Returns:
- int the page number of the given page in this document, or -1 if this document does not contain the page
- Throws:
NullPointerException- if the page isnull
-
getPages
org.jadice.util.glazedlists.EventList<Page> getPages()Returns a list of pages in the document. Please note that, unless stated otherwise by implementors, this list is not thread-safe. Care must therefore be taken to manipulate the page list with appropriate locking as detailed in the documentation ofEventList. As a convenience, a non-thread-safe page list may be wrapped usingGlazedLists.threadSafeList(EventList)to obtain a thread-safe one.- Returns:
- List of pages
- Throws:
IllegalStateException- if called on aDocumentwhich has been disposed of.
-
removeDocumentListener
Unregister aDocumentListenerfrom this document.- Parameters:
listener- the listener to remove
-
removeDocumentInterceptor
Unregister aDocumentInterceptorfrom this document.- Parameters:
interceptor- the interceptor to remove
-
setName
Sets the document's name.- Parameters:
name- The name to set- Throws:
IllegalStateException- if called on aDocumentwhich has been disposed of.
-
getState
Document.State getState() -
setState
Sets the current state of the
Document.The document
Document.Stateis not only a simple information about a document instance, but also it provides the decision base of the enabled state for many document functionalities. If the document state is not set or is set to a wrong state, these functionalities may become disabled or fail to execute. Registered interceptors may disapprove state changes. Therefore the requested state is not necessarily the actual next state.- Parameters:
state- the new state- Returns:
- whether the state change was successful (
true) or rejected (false). - Throws:
IllegalStateException- if called on aDocumentwhich has been disposed of.- See Also:
-