| org.apache.cocoon.xml.AbstractXMLPipe org.apache.cocoon.xml.xlink.XLinkPipe
All known Subclasses: org.apache.cocoon.xml.xlink.ExtendedXLinkPipe,
XLinkPipe | abstract public class XLinkPipe extends AbstractXMLPipe implements XLinkHandler(Code) | | This class implements a SAX consumer wrapper that transforms the
general SAX semantic into XLink semantics for easier consumption.
Classes should extend this class and overwrite the abstract method
to consume the XLink events that come in as SAX events.
NOTE: this is based on XLink W3C Candidate Recommendation 3 July 2000
author: Stefano Mazzocchi version: CVS $Id: XLinkPipe.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public void | endArc(String uri, String name, String raw) | public void | endElement(String uri, String name, String raw) | public void | endExtendedLink(String uri, String name, String raw) | public void | endLocator(String uri, String name, String raw) | public void | linkResource(String role, String title, String label, String uri, String name, String raw, Attributes attr) | public void | linkTitle(String uri, String name, String raw, Attributes attr) | public void | simpleLink(String href, String role, String arcrole, String title, String show, String actuate, String uri, String name, String raw, Attributes attr) | public void | startArc(String arcrole, String title, String show, String actuate, String from, String to, String uri, String name, String raw, Attributes attr) | public void | startElement(String uri, String name, String raw, Attributes attr) | public void | startExtendedLink(String role, String title, String uri, String name, String raw, Attributes attr) | public void | startLocator(String href, String role, String title, String label, String uri, String name, String raw, Attributes attr) |
XLINK_NAMESPACE_URI | final public static String XLINK_NAMESPACE_URI(Code) | | |
XLINK_TYPE_ARC | final public static String XLINK_TYPE_ARC(Code) | | |
XLINK_TYPE_EXTENDED | final public static String XLINK_TYPE_EXTENDED(Code) | | |
XLINK_TYPE_LOCATOR | final public static String XLINK_TYPE_LOCATOR(Code) | | |
XLINK_TYPE_RESOURCE | final public static String XLINK_TYPE_RESOURCE(Code) | | |
XLINK_TYPE_SIMPLE | final public static String XLINK_TYPE_SIMPLE(Code) | | |
XLINK_TYPE_TITLE | final public static String XLINK_TYPE_TITLE(Code) | | |
Methods inherited from org.apache.cocoon.xml.AbstractXMLPipe | public void characters(char c, int start, int len) throws SAXException(Code)(Java Doc) public void comment(char ch, int start, int len) throws SAXException(Code)(Java Doc) public void endCDATA() throws SAXException(Code)(Java Doc) public void endDTD() throws SAXException(Code)(Java Doc) public void endDocument() throws SAXException(Code)(Java Doc) public void endElement(String uri, String loc, String raw) throws SAXException(Code)(Java Doc) public void endEntity(String name) throws SAXException(Code)(Java Doc) public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc) public void ignorableWhitespace(char c, int start, int len) throws SAXException(Code)(Java Doc) public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void skippedEntity(String name) throws SAXException(Code)(Java Doc) public void startCDATA() throws SAXException(Code)(Java Doc) public void startDTD(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void startDocument() throws SAXException(Code)(Java Doc) public void startElement(String uri, String loc, String raw, Attributes a) throws SAXException(Code)(Java Doc) public void startEntity(String name) throws SAXException(Code)(Java Doc) public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc)
|
|
|