|
intarsys PDF library API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ILocator | |
---|---|
de.intarsys.pdf.cos | This package implements the low level document and its datatypes according to the pdf specification. |
de.intarsys.pdf.fd | A basic implementation of the FDF part of the PDF spec. |
de.intarsys.pdf.pd | The higher level building blocks of a PDF document. |
de.intarsys.pdf.st | The storage level semantics of a PDF document. |
de.intarsys.tools.locator |
Uses of ILocator in de.intarsys.pdf.cos |
---|
Methods in de.intarsys.pdf.cos that return ILocator | |
---|---|
ILocator |
COSDocument.getLocator()
The ILocator for this document. |
Methods in de.intarsys.pdf.cos with parameters of type ILocator | |
---|---|
COSDocument |
StandardDocumentFactory.createDocument(ILocator locator)
|
COSDocument |
ICOSDocumentFactory.createDocument(ILocator locator)
Create a COSDocument instance representing the object structure of the PDF file designated by locator. |
static COSDocument |
COSDocument.createFromLocator(ILocator locator)
Create a COSDocument based on a Locator. |
void |
COSDocument.restore(ILocator locator)
Restore this from a locator. |
void |
COSDocument.save(ILocator locator)
Save the document nto a new ILocator . |
void |
COSDocument.save(ILocator locator,
Map options)
Save the document to an optional new ILocator using the
options to control specific serializing behavior such as
"incremental writing". |
Uses of ILocator in de.intarsys.pdf.fd |
---|
Methods in de.intarsys.pdf.fd that return ILocator | |
---|---|
ILocator |
FDDocument.getLocator()
|
Methods in de.intarsys.pdf.fd with parameters of type ILocator | |
---|---|
void |
FDDocument.save(ILocator locator)
|
void |
FDDocument.save(ILocator locator,
Map options)
|
Uses of ILocator in de.intarsys.pdf.pd |
---|
Methods in de.intarsys.pdf.pd that return ILocator | |
---|---|
ILocator |
PDDocument.getLocator()
|
Methods in de.intarsys.pdf.pd with parameters of type ILocator | |
---|---|
static PDDocument |
PDDocument.createFromLocator(ILocator locator)
|
void |
PDDocument.restore(ILocator locator)
|
void |
PDDocument.save(ILocator locator)
|
void |
PDDocument.save(ILocator locator,
Map options)
|
Uses of ILocator in de.intarsys.pdf.st |
---|
Methods in de.intarsys.pdf.st that return ILocator | |
---|---|
ILocator |
STDocument.getLocator()
THe locator for the document data. |
Methods in de.intarsys.pdf.st with parameters of type ILocator | |
---|---|
static STDocument |
STDocument.createFromLocator(ILocator locator)
Create a new document representing the data referenced by locator. |
void |
STDocument.restore(ILocator newLocator)
|
void |
STDocument.save(ILocator pLocator)
|
void |
STDocument.save(ILocator pLocator,
Map options)
|
Uses of ILocator in de.intarsys.tools.locator |
---|
Classes in de.intarsys.tools.locator that implement ILocator | |
---|---|
class |
ByteArrayLocator
An adapter from a byte[] object to ILocator . |
class |
ClassLoaderResourceLocator
An ILocator for java resources identified directly by a class loader. |
class |
ClassResourceLocator
An ILocator for java resources relative to a given class. |
class |
CommonLocator
|
class |
FileLocator
File based implementation of ILocator . |
class |
LocatorViewport
A viewport implementation for ILocator . |
class |
ReadOnlyLocator
|
class |
StreamLocator
A simple adapter from InputStream to ILocator . |
class |
StringLocator
A simple adapter from a String to ILocator . |
class |
TransientLocator
A "non persistent" locator. |
Methods in de.intarsys.tools.locator that return ILocator | |
---|---|
ILocator |
ILocatorFactory.createLocator(String location)
Create a ILocator object. |
ILocator |
FileLocatorFactory.createLocator(String path)
The file locator factory supports looking up resources in multiple paths. |
ILocator |
TransientLocator.getChild(String name)
|
ILocator |
StringLocator.getChild(String child)
|
ILocator |
StreamLocator.getChild(String child)
|
ILocator |
ReadOnlyLocator.getChild(String name)
|
ILocator |
LocatorViewport.getChild(String name)
|
ILocator |
ILocator.getChild(String name)
The locator for the resource name within the context of
this. |
ILocator |
FileLocator.getChild(String name)
|
ILocator |
ClassResourceLocator.getChild(String childName)
|
ILocator |
ClassLoaderResourceLocator.getChild(String childName)
|
ILocator |
ByteArrayLocator.getChild(String name)
|
ILocator |
ReadOnlyLocator.getDelegate()
|
ILocator |
LocatorViewport.getDelegate()
|
ILocator |
ILocatorSupport.getLocator()
Return the ILocator that defines the physical resource location
for the reciver. |
ILocator |
TransientLocator.getParent()
|
ILocator |
StringLocator.getParent()
|
ILocator |
StreamLocator.getParent()
|
ILocator |
ReadOnlyLocator.getParent()
|
ILocator |
LocatorViewport.getParent()
|
ILocator |
ILocator.getParent()
The ILocator that is one hierarchy level up or null. |
ILocator |
FileLocator.getParent()
|
ILocator |
ClassResourceLocator.getParent()
|
ILocator |
ClassLoaderResourceLocator.getParent()
|
ILocator |
ByteArrayLocator.getParent()
|
ILocator[] |
TransientLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
StringLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
StreamLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
ReadOnlyLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
LocatorViewport.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
ILocator.listLocators(ILocatorNameFilter filter)
Return an array of ILocator that are children of the receiver
that conform to filter . |
ILocator[] |
FileLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
ClassResourceLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
ClassLoaderResourceLocator.listLocators(ILocatorNameFilter filter)
|
ILocator[] |
ByteArrayLocator.listLocators(ILocatorNameFilter filter)
|
Methods in de.intarsys.tools.locator with parameters of type ILocator | |
---|---|
boolean |
ILocatorNameFilter.accept(ILocator parent,
String name)
This method returns true if the ILocator with name
name within parent should be included in
the result list. |
Constructors in de.intarsys.tools.locator with parameters of type ILocator | |
---|---|
LocatorViewport(ILocator delegate)
|
|
ReadOnlyLocator(ILocator delegate)
|
|
intarsys PDF library API | |||||||||
PREV NEXT | FRAMES NO FRAMES |