-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
25,009 additions
and
0 deletions.
There are no files selected for viewing
379 changes: 379 additions & 0 deletions
379
xerces-1_4_4/docs/html/apiDocs/org/xml/sax/AttributeList.html
Large diffs are not rendered by default.
Oops, something went wrong.
486 changes: 486 additions & 0 deletions
486
xerces-1_4_4/docs/html/apiDocs/org/xml/sax/Attributes.html
Large diffs are not rendered by default.
Oops, something went wrong.
624 changes: 624 additions & 0 deletions
624
xerces-1_4_4/docs/html/apiDocs/org/xml/sax/ContentHandler.html
Large diffs are not rendered by default.
Oops, something went wrong.
268 changes: 268 additions & 0 deletions
268
xerces-1_4_4/docs/html/apiDocs/org/xml/sax/DTDHandler.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,268 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd"> | ||
<!--NewPage--> | ||
<HTML> | ||
<HEAD> | ||
<!-- Generated by javadoc on Thu Nov 15 14:50:25 EST 2001 --> | ||
<TITLE> | ||
Xerces-J API: Interface DTDHandler | ||
</TITLE> | ||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> | ||
</HEAD> | ||
<BODY BGCOLOR="white"> | ||
|
||
<!-- ========== START OF NAVBAR ========== --> | ||
<A NAME="navbar_top"><!-- --></A> | ||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> | ||
<TR> | ||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> | ||
<A NAME="navbar_top_firstrow"><!-- --></A> | ||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> | ||
<TR ALIGN="center" VALIGN="top"> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT ID="NavBarFont1"><B>Overview</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT ID="NavBarFont1"><B>Package</B></FONT></A> </TD> | ||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DTDHandler.html"><FONT ID="NavBarFont1"><B>Use</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT ID="NavBarFont1"><B>Index</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT ID="NavBarFont1"><B>Help</B></FONT></A> </TD> | ||
</TR> | ||
</TABLE> | ||
</TD> | ||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> | ||
</EM> | ||
</TD> | ||
</TR> | ||
|
||
<TR> | ||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> | ||
<A HREF="../../../org/xml/sax/DocumentHandler.html"><B>PREV CLASS</B></A> | ||
<A HREF="../../../org/xml/sax/EntityResolver.html"><B>NEXT CLASS</B></A></FONT></TD> | ||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> | ||
<A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A> | ||
<A HREF="DTDHandler.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> | ||
</TR> | ||
<TR> | ||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> | ||
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> | ||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> | ||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> | ||
</TR> | ||
</TABLE> | ||
<!-- =========== END OF NAVBAR =========== --> | ||
|
||
<HR> | ||
<!-- ======== START OF CLASS DATA ======== --> | ||
<H2> | ||
<FONT SIZE="-1"> | ||
org.xml.sax</FONT> | ||
<BR> | ||
Interface DTDHandler</H2> | ||
<DL> | ||
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../org/apache/xml/serialize/BaseMarkupSerializer.html">BaseMarkupSerializer</A>, <A HREF="../../../org/xml/sax/HandlerBase.html">HandlerBase</A>, <A HREF="../../../org/xml/sax/helpers/DefaultHandler.html">DefaultHandler</A>, <A HREF="../../../org/xml/sax/helpers/XMLFilterImpl.html">XMLFilterImpl</A></DD> | ||
</DL> | ||
<HR> | ||
<DL> | ||
<DT>public interface <B>DTDHandler</B></DL> | ||
|
||
<P> | ||
Receive notification of basic DTD-related events. | ||
|
||
<blockquote> | ||
<em>This module, both source code and documentation, is in the | ||
Public Domain, and comes with <strong>NO WARRANTY</strong>.</em> | ||
</blockquote> | ||
|
||
<p>If a SAX application needs information about notations and | ||
unparsed entities, then the application implements this | ||
interface and registers an instance with the SAX parser using | ||
the parser's setDTDHandler method. The parser uses the | ||
instance to report notation and unparsed entity declarations to | ||
the application.</p> | ||
|
||
<p>Note that this interface includes only those DTD events that | ||
the XML recommendation <em>requires</em> processors to report: | ||
notation and unparsed entity declarations.</p> | ||
|
||
<p>The SAX parser may report these events in any order, regardless | ||
of the order in which the notations and unparsed entities were | ||
declared; however, all DTD events must be reported after the | ||
document handler's startDocument event, and before the first | ||
startElement event.</p> | ||
|
||
<p>It is up to the application to store the information for | ||
future use (perhaps in a hash table or object tree). | ||
If the application encounters attributes of type "NOTATION", | ||
"ENTITY", or "ENTITIES", it can use the information that it | ||
obtained through this interface to find the entity and/or | ||
notation corresponding with the attribute value.</p> | ||
<P> | ||
<DL> | ||
<DT><B>Since: </B><DD>SAX 1.0</DD> | ||
<DT><B>Version: </B><DD>2.0</DD> | ||
<DT><B>Author: </B><DD>David Megginson, | ||
<a href="mailto:sax@megginson.com">sax@megginson.com</a></DD> | ||
<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/Parser.html#setDTDHandler(org.xml.sax.DTDHandler)"><CODE>Parser.setDTDHandler(org.xml.sax.DTDHandler)</CODE></A>, | ||
<A HREF="../../../org/xml/sax/HandlerBase.html"><CODE>HandlerBase</CODE></A></DL> | ||
<HR> | ||
|
||
<P> | ||
<!-- ======== INNER CLASS SUMMARY ======== --> | ||
|
||
|
||
<!-- =========== FIELD SUMMARY =========== --> | ||
|
||
|
||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> | ||
|
||
|
||
<!-- ========== METHOD SUMMARY =========== --> | ||
|
||
<A NAME="method_summary"><!-- --></A> | ||
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> | ||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> | ||
<TD COLSPAN=2><FONT SIZE="+2"> | ||
<B>Method Summary</B></FONT></TD> | ||
</TR> | ||
<TR BGCOLOR="white" CLASS="TableRowColor"> | ||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> | ||
<CODE> void</CODE></FONT></TD> | ||
<TD><CODE><B><A HREF="../../../org/xml/sax/DTDHandler.html#notationDecl(java.lang.String, java.lang.String, java.lang.String)">notationDecl</A></B>(java.lang.String name, | ||
java.lang.String publicId, | ||
java.lang.String systemId)</CODE> | ||
|
||
<BR> | ||
Receive notification of a notation declaration event.</TD> | ||
</TR> | ||
<TR BGCOLOR="white" CLASS="TableRowColor"> | ||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> | ||
<CODE> void</CODE></FONT></TD> | ||
<TD><CODE><B><A HREF="../../../org/xml/sax/DTDHandler.html#unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)">unparsedEntityDecl</A></B>(java.lang.String name, | ||
java.lang.String publicId, | ||
java.lang.String systemId, | ||
java.lang.String notationName)</CODE> | ||
|
||
<BR> | ||
Receive notification of an unparsed entity declaration event.</TD> | ||
</TR> | ||
</TABLE> | ||
| ||
<P> | ||
|
||
<!-- ============ FIELD DETAIL =========== --> | ||
|
||
|
||
<!-- ========= CONSTRUCTOR DETAIL ======== --> | ||
|
||
|
||
<!-- ============ METHOD DETAIL ========== --> | ||
|
||
<A NAME="method_detail"><!-- --></A> | ||
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> | ||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> | ||
<TD COLSPAN=1><FONT SIZE="+2"> | ||
<B>Method Detail</B></FONT></TD> | ||
</TR> | ||
</TABLE> | ||
|
||
<A NAME="notationDecl(java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3> | ||
notationDecl</H3> | ||
<PRE> | ||
public void <B>notationDecl</B>(java.lang.String name, | ||
java.lang.String publicId, | ||
java.lang.String systemId) | ||
throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE> | ||
<DL> | ||
<DD>Receive notification of a notation declaration event. | ||
|
||
<p>It is up to the application to record the notation for later | ||
reference, if necessary.</p> | ||
|
||
<p>At least one of publicId and systemId must be non-null. | ||
If a system identifier is present, and it is a URL, the SAX | ||
parser must resolve it fully before passing it to the | ||
application through this event.</p> | ||
|
||
<p>There is no guarantee that the notation declaration will be | ||
reported before any unparsed entities that use it.</p><DD><DL> | ||
<DT><B>Parameters:</B><DD><CODE>name</CODE> - The notation name.<DD><CODE>publicId</CODE> - The notation's public identifier, or null if | ||
none was given.<DD><CODE>systemId</CODE> - The notation's system identifier, or null if | ||
none was given.<DT><B>Throws:</B><DD><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A> - Any SAX exception, possibly | ||
wrapping another exception.<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/DTDHandler.html#unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><CODE>unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)</CODE></A>, | ||
<A HREF="../../../org/xml/sax/AttributeList.html"><CODE>AttributeList</CODE></A></DL> | ||
</DD> | ||
</DL> | ||
<HR> | ||
|
||
<A NAME="unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3> | ||
unparsedEntityDecl</H3> | ||
<PRE> | ||
public void <B>unparsedEntityDecl</B>(java.lang.String name, | ||
java.lang.String publicId, | ||
java.lang.String systemId, | ||
java.lang.String notationName) | ||
throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE> | ||
<DL> | ||
<DD>Receive notification of an unparsed entity declaration event. | ||
|
||
<p>Note that the notation name corresponds to a notation | ||
reported by the <A HREF="../../../org/xml/sax/DTDHandler.html#notationDecl(java.lang.String, java.lang.String, java.lang.String)"><CODE>notationDecl</CODE></A> event. | ||
It is up to the application to record the entity for later | ||
reference, if necessary.</p> | ||
|
||
<p>If the system identifier is a URL, the parser must resolve it | ||
fully before passing it to the application.</p><DD><DL> | ||
<DT><B>Parameters:</B><DD><CODE>name</CODE> - The unparsed entity's name.<DD><CODE>publicId</CODE> - The entity's public identifier, or null if none | ||
was given.<DD><CODE>systemId</CODE> - The entity's system identifier.<DD><CODE>notation</CODE> - name The name of the associated notation.<DT><B>Throws:</B><DD><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A> - Any SAX exception, possibly | ||
wrapping another exception.<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/DTDHandler.html#notationDecl(java.lang.String, java.lang.String, java.lang.String)"><CODE>notationDecl(java.lang.String, java.lang.String, java.lang.String)</CODE></A>, | ||
<A HREF="../../../org/xml/sax/AttributeList.html"><CODE>AttributeList</CODE></A></DL> | ||
</DD> | ||
</DL> | ||
<!-- ========= END OF CLASS DATA ========= --> | ||
<HR> | ||
|
||
<!-- ========== START OF NAVBAR ========== --> | ||
<A NAME="navbar_bottom"><!-- --></A> | ||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> | ||
<TR> | ||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> | ||
<A NAME="navbar_bottom_firstrow"><!-- --></A> | ||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> | ||
<TR ALIGN="center" VALIGN="top"> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT ID="NavBarFont1"><B>Overview</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT ID="NavBarFont1"><B>Package</B></FONT></A> </TD> | ||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DTDHandler.html"><FONT ID="NavBarFont1"><B>Use</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT ID="NavBarFont1"><B>Index</B></FONT></A> </TD> | ||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT ID="NavBarFont1"><B>Help</B></FONT></A> </TD> | ||
</TR> | ||
</TABLE> | ||
</TD> | ||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> | ||
</EM> | ||
</TD> | ||
</TR> | ||
|
||
<TR> | ||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> | ||
<A HREF="../../../org/xml/sax/DocumentHandler.html"><B>PREV CLASS</B></A> | ||
<A HREF="../../../org/xml/sax/EntityResolver.html"><B>NEXT CLASS</B></A></FONT></TD> | ||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> | ||
<A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A> | ||
<A HREF="DTDHandler.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> | ||
</TR> | ||
<TR> | ||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> | ||
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD> | ||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> | ||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD> | ||
</TR> | ||
</TABLE> | ||
<!-- =========== END OF NAVBAR =========== --> | ||
|
||
<HR> | ||
Copyright � 1999-2001 Apache XML Project. All Rights Reserved. | ||
</BODY> | ||
</HTML> |
Oops, something went wrong.