com.ibm.portal.resolver.mashup
Interface MashupSitemapContentHandler

All Superinterfaces:
org.xml.sax.ContentHandler, ResettableContentHandler
All Known Subinterfaces:
DefaultMashupSitemapContentHandler, ResettableMashupSitemapContentHandler

public interface MashupSitemapContentHandler
extends ResettableContentHandler

JAXP content handler extension that defines semantic callbacks for sitemap specific events. For each event in the sitemap namespace these semantic events should be called instead of the untyped SAX events. For all events outside of the ATOM namespace the methods on ContentHandler should be called.


Method Summary
 void endEntry()
           
 void endParameter()
           
 void endSiteMap()
           
 void endValue()
           
 void startEntry(java.lang.String rURI, java.lang.String oMode, org.xml.sax.Attributes attrs)
           
 void startParameter(java.lang.String rName, org.xml.sax.Attributes attrs)
           
 void startSiteMap(org.xml.sax.Attributes attrs)
           
 void startValue(org.xml.sax.Attributes attrs)
           
 
Methods inherited from interface org.xml.sax.ContentHandler
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
 

Method Detail

startSiteMap

void startSiteMap(org.xml.sax.Attributes attrs)
                  throws org.xml.sax.SAXException
Parameters:
attrs -
Throws:
org.xml.sax.SAXException

endSiteMap

void endSiteMap()
                throws org.xml.sax.SAXException
Throws:
org.xml.sax.SAXException

startEntry

void startEntry(java.lang.String rURI,
                java.lang.String oMode,
                org.xml.sax.Attributes attrs)
                throws org.xml.sax.SAXException
Parameters:
rURI -
oMode -
attrs -
Throws:
org.xml.sax.SAXException

endEntry

void endEntry()
              throws org.xml.sax.SAXException
Throws:
org.xml.sax.SAXException

startParameter

void startParameter(java.lang.String rName,
                    org.xml.sax.Attributes attrs)
                    throws org.xml.sax.SAXException
Parameters:
rName -
attrs -
Throws:
org.xml.sax.SAXException

endParameter

void endParameter()
                  throws org.xml.sax.SAXException
Throws:
org.xml.sax.SAXException

startValue

void startValue(org.xml.sax.Attributes attrs)
                throws org.xml.sax.SAXException
Parameters:
attrs -
Throws:
org.xml.sax.SAXException

endValue

void endValue()
              throws org.xml.sax.SAXException
Throws:
org.xml.sax.SAXException