|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ParsedURL | |
---|---|
org.apache.batik.apps.svgbrowser | |
org.apache.batik.bridge | Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree. |
org.apache.batik.css.engine | |
org.apache.batik.css.engine.value | |
org.apache.batik.dom.svg | |
org.apache.batik.ext.awt.image | Contains extensions to the java.awt.image package. |
org.apache.batik.ext.awt.image.codec.imageio | |
org.apache.batik.ext.awt.image.codec.jpeg | |
org.apache.batik.ext.awt.image.codec.png | |
org.apache.batik.ext.awt.image.codec.tiff | |
org.apache.batik.ext.awt.image.spi | |
org.apache.batik.extension | This package contains Batik's extensions to standard SVG (custom elements, additional bridges...). |
org.apache.batik.swing.svg | |
org.apache.batik.transcoder | Contains all of the interfaces for transcoding an input stream or a document to a particular ouput format. |
org.apache.batik.util | Provides some useful classes. |
Uses of ParsedURL in org.apache.batik.apps.svgbrowser |
---|
Methods in org.apache.batik.apps.svgbrowser with parameters of type ParsedURL | |
---|---|
boolean |
SquiggleInputHandler.accept(ParsedURL purl)
Returns true if the input URI can be handled by the handler |
boolean |
XMLInputHandler.accept(ParsedURL purl)
Returns true if the input URI can be handled by the handler |
boolean |
SVGInputHandler.accept(ParsedURL purl)
Returns true if the input URI can be handled by the handler |
void |
JSVGViewerFrame.UserAgent.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
JSVGViewerFrame.UserAgent.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
ExternalResourceSecurity |
JSVGViewerFrame.UserAgent.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
SquiggleInputHandler |
JSVGViewerFrame.getInputHandler(ParsedURL purl)
Returns the input handler for the given URI |
ScriptSecurity |
JSVGViewerFrame.UserAgent.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
void |
SquiggleInputHandler.handle(ParsedURL purl,
JSVGViewerFrame svgFrame)
Handles the given input for the given JSVGViewerFrame |
void |
XMLInputHandler.handle(ParsedURL purl,
JSVGViewerFrame svgViewerFrame)
Handles the given input for the given JSVGViewerFrame |
void |
SVGInputHandler.handle(ParsedURL purl,
JSVGViewerFrame svgViewerFrame)
Handles the given input for the given JSVGViewerFrame |
Uses of ParsedURL in org.apache.batik.bridge |
---|
Fields in org.apache.batik.bridge declared as ParsedURL | |
---|---|
protected ParsedURL |
BaseScriptingEnvironment.docPURL
The URL of the document ot manage |
Methods in org.apache.batik.bridge with parameters of type ParsedURL | |
---|---|
protected void |
BaseScriptingEnvironment.checkCompatibleScriptURL(String scriptType,
ParsedURL scriptPURL)
Checks that the script URLs and the document url are compatible. |
void |
UserAgentAdapter.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
UserAgent.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
BridgeContext.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
UserAgentAdapter.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
void |
UserAgent.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
protected GraphicsNode |
SVGImageElementBridge.createImageGraphicsNode(BridgeContext ctx,
Element e,
ParsedURL purl)
|
protected static Filter |
SVGFeImageElementBridge.createRasterFeImage(BridgeContext ctx,
Rectangle2D primitiveRegion,
ParsedURL purl)
Returns a Filter that represents an raster image (JPG or PNG). |
protected GraphicsNode |
SVGImageElementBridge.createRasterImageNode(BridgeContext ctx,
Element e,
Filter img,
ParsedURL purl)
Returns a GraphicsNode that represents an raster image in JPEG or PNG format. |
protected Filter |
CursorManager.cursorHrefToFilter(Element cursorElement,
ParsedURL purl,
Point2D hotSpot)
Converts the input ParsedURL into a Filter and transforms the input hotSpot point (in image space) to cursor space |
ExternalResourceSecurity |
UserAgentAdapter.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
ExternalResourceSecurity |
UserAgent.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
protected GVTFontFamily |
FontFace.getFontFamily(BridgeContext ctx,
ParsedURL purl)
Tries to build a GVTFontFamily from a URL reference |
ScriptSecurity |
UserAgentAdapter.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
ScriptSecurity |
UserAgent.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
static Object |
CSSFontFace.getSrcValue(Value v,
ParsedURL base)
|
protected SVGImageElementBridge.ProtectedStream |
SVGImageElementBridge.openStream(Element e,
ParsedURL purl)
|
Constructors in org.apache.batik.bridge with parameters of type ParsedURL | |
---|---|
DefaultExternalResourceSecurity(ParsedURL externalResourceURL,
ParsedURL docURL)
|
|
DefaultScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
|
|
EmbededExternalResourceSecurity(ParsedURL externalResourceURL)
|
|
EmbededScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
|
|
RelaxedExternalResourceSecurity(ParsedURL externalResourceURL,
ParsedURL docURL)
|
|
RelaxedScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
|
Uses of ParsedURL in org.apache.batik.css.engine |
---|
Fields in org.apache.batik.css.engine declared as ParsedURL | |
---|---|
protected ParsedURL |
CSSEngine.cssBaseURI
The current base URI. |
protected ParsedURL |
CSSEngine.documentURI
The document URI. |
protected ParsedURL |
ImportRule.uri
The URI of the imported stylesheet. |
Methods in org.apache.batik.css.engine that return ParsedURL | |
---|---|
ParsedURL |
CSSStylableElement.getCSSBase()
Returns the CSS base URL of this element. |
ParsedURL |
CSSEngine.getCSSBaseURI()
Returns the current base-url. |
ParsedURL |
ImportRule.getURI()
Returns the URI of the imported stylesheet. |
ParsedURL |
FontFaceRule.getURL()
Returns the URI of the @font-face rule. |
Methods in org.apache.batik.css.engine with parameters of type ParsedURL | |
---|---|
void |
CSSContext.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method should throw a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
StyleSheet |
CSSEngine.parseStyleSheet(org.w3c.css.sac.InputSource is,
ParsedURL uri,
String media)
Parses and creates a new style-sheet. |
StyleSheet |
CSSEngine.parseStyleSheet(ParsedURL uri,
String media)
Parses and creates a new style-sheet. |
StyleSheet |
CSSEngine.parseStyleSheet(String rules,
ParsedURL uri,
String media)
Parses and creates a new style-sheet. |
protected void |
CSSEngine.parseStyleSheet(StyleSheet ss,
org.w3c.css.sac.InputSource is,
ParsedURL uri)
Parses and fills the given style-sheet. |
void |
CSSEngine.parseStyleSheet(StyleSheet ss,
ParsedURL uri)
Parses and fills the given style-sheet. |
void |
CSSEngine.parseStyleSheet(StyleSheet ss,
String rules,
ParsedURL uri)
Parses and fills the given style-sheet. |
void |
ImportRule.setURI(ParsedURL u)
Sets the URI of the imported stylesheet. |
Uses of ParsedURL in org.apache.batik.css.engine.value |
---|
Methods in org.apache.batik.css.engine.value with parameters of type ParsedURL | |
---|---|
protected static String |
AbstractValueFactory.resolveURI(ParsedURL base,
String value)
Resolves an URI. |
Uses of ParsedURL in org.apache.batik.dom.svg |
---|
Fields in org.apache.batik.dom.svg declared as ParsedURL | |
---|---|
protected ParsedURL |
SVGOMDocument.url
The URL of the document. |
Methods in org.apache.batik.dom.svg that return ParsedURL | |
---|---|
ParsedURL |
SVGStylableElement.getCSSBase()
Returns the CSS base URL of this element. |
ParsedURL |
SVGOMDocument.getParsedURL()
Returns the URI of the document. |
Methods in org.apache.batik.dom.svg with parameters of type ParsedURL | |
---|---|
void |
SVGOMDocument.setParsedURL(ParsedURL url)
Sets the URI of the document. |
Uses of ParsedURL in org.apache.batik.ext.awt.image |
---|
Methods in org.apache.batik.ext.awt.image with parameters of type ParsedURL | |
---|---|
void |
URLImageCache.clear(ParsedURL purl)
Clear the entry for ParsedURL. |
boolean |
URLImageCache.isDone(ParsedURL purl)
Check if request(url) will return immediately with the Filter. |
boolean |
URLImageCache.isPresent(ParsedURL purl)
Check if request(url) will return with a Filter (not putting you on the hook for it). |
void |
URLImageCache.put(ParsedURL purl,
Filter filt)
Associate bi with purl. |
Filter |
URLImageCache.request(ParsedURL purl)
If this returns null then you are now 'on the hook'. |
Uses of ParsedURL in org.apache.batik.ext.awt.image.codec.imageio |
---|
Methods in org.apache.batik.ext.awt.image.codec.imageio with parameters of type ParsedURL | |
---|---|
Filter |
AbstractImageIORegistryEntry.handleStream(InputStream inIS,
ParsedURL origURL,
boolean needRawData)
Decode the Stream into a RenderableImage |
Uses of ParsedURL in org.apache.batik.ext.awt.image.codec.jpeg |
---|
Methods in org.apache.batik.ext.awt.image.codec.jpeg with parameters of type ParsedURL | |
---|---|
Filter |
JPEGRegistryEntry.handleStream(InputStream inIS,
ParsedURL origURL,
boolean needRawData)
Decode the Stream into a RenderableImage |
Uses of ParsedURL in org.apache.batik.ext.awt.image.codec.png |
---|
Methods in org.apache.batik.ext.awt.image.codec.png with parameters of type ParsedURL | |
---|---|
Filter |
PNGRegistryEntry.handleStream(InputStream inIS,
ParsedURL origURL,
boolean needRawData)
Decode the Stream into a RenderableImage |
Uses of ParsedURL in org.apache.batik.ext.awt.image.codec.tiff |
---|
Methods in org.apache.batik.ext.awt.image.codec.tiff with parameters of type ParsedURL | |
---|---|
Filter |
TIFFRegistryEntry.handleStream(InputStream inIS,
ParsedURL origURL,
boolean needRawData)
Decode the Stream into a RenderableImage |
Uses of ParsedURL in org.apache.batik.ext.awt.image.spi |
---|
Methods in org.apache.batik.ext.awt.image.spi with parameters of type ParsedURL | |
---|---|
Filter |
ImageTagRegistry.checkCache(ParsedURL purl,
ICCColorSpaceExt colorSpace)
|
void |
ImageTagRegistry.flushImage(ParsedURL purl)
Removes the given URL from the cache. |
Filter |
StreamRegistryEntry.handleStream(InputStream is,
ParsedURL origURL,
boolean needRawData)
Decode the Stream into a Filter. |
Filter |
URLRegistryEntry.handleURL(ParsedURL url,
boolean needRawData)
Decode the URL into a RenderableImage, here you should feel free to open the URL yourself. |
Filter |
JDKRegistryEntry.handleURL(ParsedURL purl,
boolean needRawData)
Decode the URL into a RenderableImage |
boolean |
URLRegistryEntry.isCompatibleURL(ParsedURL url)
Check if the URL references an image that can be handled by this format handler. |
boolean |
JDKRegistryEntry.isCompatibleURL(ParsedURL purl)
Check if the Stream references an image that can be handled by this format handler. |
Filter |
ImageTagRegistry.readURL(InputStream is,
ParsedURL purl,
ICCColorSpaceExt colorSpace,
boolean allowOpenStream,
boolean returnBrokenLink)
|
Filter |
ImageTagRegistry.readURL(ParsedURL purl)
|
Filter |
ImageTagRegistry.readURL(ParsedURL purl,
ICCColorSpaceExt colorSpace)
|
Uses of ParsedURL in org.apache.batik.extension |
---|
Fields in org.apache.batik.extension declared as ParsedURL | |
---|---|
protected ParsedURL |
StylableExtensionElement.cssBase
The base URL. |
Methods in org.apache.batik.extension that return ParsedURL | |
---|---|
ParsedURL |
StylableExtensionElement.getCSSBase()
Returns the CSS base URL of this element. |
Uses of ParsedURL in org.apache.batik.swing.svg |
---|
Methods in org.apache.batik.swing.svg with parameters of type ParsedURL | |
---|---|
void |
AbstractJSVGComponent.BridgeUserAgentWrapper.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
AbstractJSVGComponent.BridgeUserAgent.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
SVGUserAgentAdapter.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
SVGUserAgent.checkLoadExternalResource(ParsedURL resourceURL,
ParsedURL docURL)
This method throws a SecurityException if the resource found at url and referenced from docURL should not be loaded. |
void |
AbstractJSVGComponent.BridgeUserAgentWrapper.checkLoadScript(String scriptType,
ParsedURL scriptPURL,
ParsedURL docPURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
void |
AbstractJSVGComponent.BridgeUserAgent.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
void |
SVGUserAgentAdapter.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
void |
SVGUserAgent.checkLoadScript(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
This method throws a SecurityException if the script of given type, found at url and referenced from docURL should not be loaded. |
ExternalResourceSecurity |
AbstractJSVGComponent.BridgeUserAgentWrapper.getExternalResourceSecurity(ParsedURL resourcePURL,
ParsedURL docPURL)
Returns the security settings for the given resource url and document url |
ExternalResourceSecurity |
AbstractJSVGComponent.BridgeUserAgent.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
ExternalResourceSecurity |
SVGUserAgentAdapter.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
ExternalResourceSecurity |
SVGUserAgent.getExternalResourceSecurity(ParsedURL resourceURL,
ParsedURL docURL)
Returns the security settings for the given resource url and document url |
ScriptSecurity |
AbstractJSVGComponent.BridgeUserAgentWrapper.getScriptSecurity(String scriptType,
ParsedURL scriptPURL,
ParsedURL docPURL)
Returns the security settings for the given script type, script url and document url |
ScriptSecurity |
AbstractJSVGComponent.BridgeUserAgent.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
ScriptSecurity |
SVGUserAgentAdapter.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
ScriptSecurity |
SVGUserAgent.getScriptSecurity(String scriptType,
ParsedURL scriptURL,
ParsedURL docURL)
Returns the security settings for the given script type, script url and document url |
Uses of ParsedURL in org.apache.batik.transcoder |
---|
Methods in org.apache.batik.transcoder with parameters of type ParsedURL | |
---|---|
ScriptSecurity |
SVGAbstractTranscoder.SVGAbstractTranscoderUserAgent.getScriptSecurity(String scriptType,
ParsedURL scriptPURL,
ParsedURL docPURL)
Returns the security settings for the given script type, script url and document url |
Uses of ParsedURL in org.apache.batik.util |
---|
Methods in org.apache.batik.util with parameters of type ParsedURL | |
---|---|
static ParsedURLData |
ParsedURL.parseURL(ParsedURL baseURL,
String urlStr)
Factory method to construct an appropriate subclass of ParsedURLData, for a sub url. |
ParsedURLData |
ParsedURLDataProtocolHandler.parseURL(ParsedURL baseURL,
String urlStr)
|
ParsedURLData |
ParsedURLDefaultProtocolHandler.parseURL(ParsedURL baseURL,
String urlStr)
Parses the string as a sub URL of baseURL, and returns the results of parsing in the ParsedURLData object. |
ParsedURLData |
ParsedURLProtocolHandler.parseURL(ParsedURL basepurl,
String urlStr)
Parse a relative url string of this protocol. |
ParsedURLData |
ParsedURLJarProtocolHandler.parseURL(ParsedURL baseURL,
String urlStr)
|
boolean |
ParsedURL.sameFile(ParsedURL other)
|
Constructors in org.apache.batik.util with parameters of type ParsedURL | |
---|---|
ParsedURL(ParsedURL baseURL,
String urlStr)
Construct a sub URL from a base ParsedURL and a string for the sub url. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |