org.apache.myfaces.webapp.filter
Class WelcomeFileHandler
DefaultHandlerorg.apache.myfaces.webapp.filter.WelcomeFileHandler
public class WelcomeFileHandler
extends DefaultHandler
DOCUMENT ME!
$Revision: 167257 $ $Date: 2004-10-13 13:51:02 +0200 (Wed, 13 Oct 2004) $- Robert J. Lebowitz (latest modification by $Author: matze $)
void | characters(char[] ch, int start, int length)-
Method used to examine, modify or extract text in body of an element
|
void | endElement(String ns, String local, String qName)- Method called with each end element in an XML Document
|
String[] | getWelcomeFiles()- Accessor method used to get the array of welcome files.
|
void | startElement(String ns, String local, String qName, Attributes atts)-
Method called with each start element in an XML document
|
WelcomeFileHandler
public WelcomeFileHandler()
Creates a new WelcomeFileHandler object.
characters
public void characters(char[] ch,
int start,
int length)
throws SAXException
Method used to examine, modify or extract text in body of an element
ch - character array containing the tag's body information.start - starting index of the body text in the character array.length - length of the text found in the body.
endElement
public void endElement(String ns,
String local,
String qName)
throws SAXException Method called with each end element in an XML Document
ns - The namespace associated with this elementlocal - The local name of this elementqName - The qualified name of this element
getWelcomeFiles
public String[] getWelcomeFiles()
Accessor method used to get the array of welcome files.
- The string array of welcome files.
startElement
public void startElement(String ns,
String local,
String qName,
Attributes atts)
throws SAXException
Method called with each start element in an XML document
ns - The namespace associated with this elementlocal - The local name of this elementqName - The qualified name of this elementatts - Attributes associated with this element