Difference between revisions of "DocumentGranule Code"
From DocDataFlow
(Created page with "The DocumentGranule class is derived from the ''Granule'' class. It has a ''class identifier'' of "com.rorohiko.granule.document". The follo...") |
|||
Line 1: | Line 1: | ||
The DocumentGranule class is derived from the [[Granule|''Granule'']] class. | The DocumentGranule class is derived from the [[Granule|''Granule'']] class. | ||
− | It has a [[Class identifier|''class identifier'']] of | + | It has a [[Class identifier|''class identifier'']] of <pre>com.rorohiko.granule.document</pre>. |
The following methods are provided: | The following methods are provided: | ||
− | * documentGranule.getAppContext(): get the current application context for this document granule. In the first version of Crawler, this is a single global context, shared by the whole Crawler session, but in the future, Crawler might support multiple concurrent applications during a single conversion session, in which case the appContext can vary between document granules. | + | * <pre>documentGranule.getAppContext()</pre>: get the current application context for this document granule. In the first version of Crawler, this is a single global context, shared by the whole Crawler session, but in the future, Crawler might support multiple concurrent applications during a single conversion session, in which case the appContext can vary between document granules. |
* documentGranule.getDocumentGranule(): returns the 'owning document' for this granule. Because the DocumentGranule represents the document it is kind of a do-nothing: it returns the granule itself. This same method is available for all document-derived granules, and it is available here too for reasons of symmetry: if you have a document-derived granule, calling getDocumentGranule() will give you the 'owning document'. | * documentGranule.getDocumentGranule(): returns the 'owning document' for this granule. Because the DocumentGranule represents the document it is kind of a do-nothing: it returns the granule itself. This same method is available for all document-derived granules, and it is available here too for reasons of symmetry: if you have a document-derived granule, calling getDocumentGranule() will give you the 'owning document'. | ||
* documentGranule.getFile(): returns the associated file on disk (if any). | * documentGranule.getFile(): returns the associated file on disk (if any). |
Revision as of 01:42, 30 December 2013
The DocumentGranule class is derived from the Granule class.
It has a class identifier ofcom.rorohiko.granule.document.
The following methods are provided:
-
documentGranule.getAppContext()
: get the current application context for this document granule. In the first version of Crawler, this is a single global context, shared by the whole Crawler session, but in the future, Crawler might support multiple concurrent applications during a single conversion session, in which case the appContext can vary between document granules.
- documentGranule.getDocumentGranule(): returns the 'owning document' for this granule. Because the DocumentGranule represents the document it is kind of a do-nothing: it returns the granule itself. This same method is available for all document-derived granules, and it is available here too for reasons of symmetry: if you have a document-derived granule, calling getDocumentGranule() will give you the 'owning document'.
- documentGranule.getFile(): returns the associated file on disk (if any).