| Method from org.apache.cocoon.environment.URLFactorySourceResolver Detail: |
public void release(Source source) {
throw new RuntimeException("URLFactorySourceResolver.release() is not implemented yet.");
} Deprecated!Releases a resolved resource |
public Source resolve(String systemID) throws IOException, SAXException, ProcessingException {
URL url = this.urlFactory.getURL(systemID);
return new URLSource(url, this.manager);
} Deprecated! |
public Source resolveURI(String location) throws MalformedURLException, SourceException, IOException {
return this.resolveURI(location, null, null);
} Deprecated! |
public Source resolveURI(String location,
String baseURI,
Map parameters) throws MalformedURLException, SourceException, IOException {
throw new RuntimeException("URLFactorySourceResolver.resolveURI() is not implemented yet.");
} Deprecated! |
public void toSAX(Source source,
ContentHandler handler) throws IOException, SAXException, ProcessingException {
throw new RuntimeException("ProcessingException.toSAX() is not implemented yet.");
} Deprecated!Generates SAX events from the given source
NOTE : if the implementation can produce lexical events, care should be taken
that handler can actually
directly implement the LexicalHandler interface! |
public void toSAX(Source source,
String mimeTypeHint,
ContentHandler handler) throws IOException, SAXException, ProcessingException {
throw new RuntimeException("ProcessingException.toSAX() is not implemented yet.");
} Deprecated!Generates SAX events from the given source
NOTE : if the implementation can produce lexical events, care should be taken
that handler can actually
directly implement the LexicalHandler interface! |