1 16 package org.apache.cocoon.xml.xlink; 17 18 import org.xml.sax.Attributes ; 19 import org.xml.sax.SAXException ; 20 21 28 public interface XLinkHandler { 29 30 void simpleLink(String href, String role, String arcrole, String title, String show, String actuate, String uri, String name, String raw, Attributes attr) throws SAXException ; 31 32 void startExtendedLink(String role, String title, String uri, String name, String raw, Attributes attr) throws SAXException ; 33 34 void endExtendedLink(String uri, String name, String raw) throws SAXException ; 35 36 void startLocator(String href, String role, String title, String label, String uri, String name, String raw, Attributes attr) throws SAXException ; 37 38 void endLocator(String uri, String name, String raw) throws SAXException ; 39 40 void startArc(String arcrole, String title, String show, String actuate, String from, String to, String uri, String name, String raw, Attributes attr) throws SAXException ; 41 42 void endArc(String uri, String name, String raw) throws SAXException ; 43 44 void linkResource(String role, String title, String label, String uri, String name, String raw, Attributes attr) throws SAXException ; 45 46 void linkTitle(String uri, String name, String raw, Attributes attr) throws SAXException ; 47 48 } 49 50 | Popular Tags |