jaxp/src/share/classes/org/xml/sax/ext/LexicalHandler.java
author ohair
Mon, 14 Apr 2008 14:52:27 -0700
changeset 311 3c14f21bf3f7
parent 6 7f561c08de6b
permissions -rw-r--r--
6484686: The next directory looks like it is no longer part of the build (deploy makefiles) Summary: Getting rid of the _OUTPUTDIR settings. Using BUILD_PARENT_DIRECTORY instead. This solves problems with the "/build/windows-i586*" paths getting mangled on Windows builds (fastdebug builds in particular). Reviewed-by: tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2005 Sun Microsystems, Inc.  All Rights Reserved.
7f561c08de6b Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7f561c08de6b Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7f561c08de6b Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
7f561c08de6b Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7f561c08de6b Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
7f561c08de6b Initial load
duke
parents:
diff changeset
    10
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7f561c08de6b Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
 * have any questions.
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
// LexicalHandler.java - optional handler for lexical parse events.
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
// http://www.saxproject.org
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
// Public Domain: no warranty.
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
// $Id: LexicalHandler.java,v 1.2 2004/11/03 22:49:08 jsuttor Exp $
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
package org.xml.sax.ext;
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
import org.xml.sax.SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
 * SAX2 extension handler for lexical events.
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
 * <blockquote>
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
 * <em>This module, both source code and documentation, is in the
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
 * for further information.
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
 * </blockquote>
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
 * <p>This is an optional extension handler for SAX2 to provide
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
 * lexical information about an XML document, such as comments
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
 * and CDATA section boundaries.
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
 * XML readers are not required to recognize this handler, and it
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
 * is not part of core-only SAX2 distributions.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
 * <p>The events in the lexical handler apply to the entire document,
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
 * not just to the document element, and all lexical handler events
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
 * must appear between the content handler's startDocument and
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
 * endDocument events.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
 * <p>To set the LexicalHandler for an XML reader, use the
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
 * {@link org.xml.sax.XMLReader#setProperty setProperty} method
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
 * with the property name
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
 * <code>http://xml.org/sax/properties/lexical-handler</code>
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
 * and an object implementing this interface (or null) as the value.
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
 * If the reader does not report lexical events, it will throw a
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
 * {@link org.xml.sax.SAXNotRecognizedException SAXNotRecognizedException}
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
 * when you attempt to register the handler.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
 * @since SAX 2.0 (extensions 1.0)
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
 * @author David Megginson
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
public interface LexicalHandler
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
{
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
     * Report the start of DTD declarations, if any.
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
     * <p>This method is intended to report the beginning of the
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
     * DOCTYPE declaration; if the document has no DOCTYPE declaration,
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
     * this method will not be invoked.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
     * <p>All declarations reported through
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
     * {@link org.xml.sax.DTDHandler DTDHandler} or
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
     * {@link org.xml.sax.ext.DeclHandler DeclHandler} events must appear
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
     * between the startDTD and {@link #endDTD endDTD} events.
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
     * Declarations are assumed to belong to the internal DTD subset
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
     * unless they appear between {@link #startEntity startEntity}
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
     * and {@link #endEntity endEntity} events.  Comments and
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
     * processing instructions from the DTD should also be reported
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
     * between the startDTD and endDTD events, in their original
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
     * order of (logical) occurrence; they are not required to
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
     * appear in their correct locations relative to DTDHandler
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
     * or DeclHandler events, however.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
     * <p>Note that the start/endDTD events will appear within
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
     * the start/endDocument events from ContentHandler and
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
     * before the first
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
     * {@link org.xml.sax.ContentHandler#startElement startElement}
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
     * event.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
    96
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
    97
     * @param name The document type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
    98
     * @param publicId The declared public identifier for the
7f561c08de6b Initial load
duke
parents:
diff changeset
    99
     *        external DTD subset, or null if none was declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
   100
     * @param systemId The declared system identifier for the
7f561c08de6b Initial load
duke
parents:
diff changeset
   101
     *        external DTD subset, or null if none was declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
   102
     *        (Note that this is not resolved against the document
7f561c08de6b Initial load
duke
parents:
diff changeset
   103
     *        base URI.)
7f561c08de6b Initial load
duke
parents:
diff changeset
   104
     * @exception SAXException The application may raise an
7f561c08de6b Initial load
duke
parents:
diff changeset
   105
     *            exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   106
     * @see #endDTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   107
     * @see #startEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
   108
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   109
    public abstract void startDTD (String name, String publicId,
7f561c08de6b Initial load
duke
parents:
diff changeset
   110
                                   String systemId)
7f561c08de6b Initial load
duke
parents:
diff changeset
   111
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   112
7f561c08de6b Initial load
duke
parents:
diff changeset
   113
7f561c08de6b Initial load
duke
parents:
diff changeset
   114
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   115
     * Report the end of DTD declarations.
7f561c08de6b Initial load
duke
parents:
diff changeset
   116
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   117
     * <p>This method is intended to report the end of the
7f561c08de6b Initial load
duke
parents:
diff changeset
   118
     * DOCTYPE declaration; if the document has no DOCTYPE declaration,
7f561c08de6b Initial load
duke
parents:
diff changeset
   119
     * this method will not be invoked.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   120
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   121
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   122
     * @see #startDTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   123
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   124
    public abstract void endDTD ()
7f561c08de6b Initial load
duke
parents:
diff changeset
   125
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   126
7f561c08de6b Initial load
duke
parents:
diff changeset
   127
7f561c08de6b Initial load
duke
parents:
diff changeset
   128
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   129
     * Report the beginning of some internal and external XML entities.
7f561c08de6b Initial load
duke
parents:
diff changeset
   130
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   131
     * <p>The reporting of parameter entities (including
7f561c08de6b Initial load
duke
parents:
diff changeset
   132
     * the external DTD subset) is optional, and SAX2 drivers that
7f561c08de6b Initial load
duke
parents:
diff changeset
   133
     * report LexicalHandler events may not implement it; you can use the
7f561c08de6b Initial load
duke
parents:
diff changeset
   134
     * <code
7f561c08de6b Initial load
duke
parents:
diff changeset
   135
     * >http://xml.org/sax/features/lexical-handler/parameter-entities</code>
7f561c08de6b Initial load
duke
parents:
diff changeset
   136
     * feature to query or control the reporting of parameter entities.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   137
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   138
     * <p>General entities are reported with their regular names,
7f561c08de6b Initial load
duke
parents:
diff changeset
   139
     * parameter entities have '%' prepended to their names, and
7f561c08de6b Initial load
duke
parents:
diff changeset
   140
     * the external DTD subset has the pseudo-entity name "[dtd]".</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   141
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   142
     * <p>When a SAX2 driver is providing these events, all other
7f561c08de6b Initial load
duke
parents:
diff changeset
   143
     * events must be properly nested within start/end entity
7f561c08de6b Initial load
duke
parents:
diff changeset
   144
     * events.  There is no additional requirement that events from
7f561c08de6b Initial load
duke
parents:
diff changeset
   145
     * {@link org.xml.sax.ext.DeclHandler DeclHandler} or
7f561c08de6b Initial load
duke
parents:
diff changeset
   146
     * {@link org.xml.sax.DTDHandler DTDHandler} be properly ordered.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   147
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   148
     * <p>Note that skipped entities will be reported through the
7f561c08de6b Initial load
duke
parents:
diff changeset
   149
     * {@link org.xml.sax.ContentHandler#skippedEntity skippedEntity}
7f561c08de6b Initial load
duke
parents:
diff changeset
   150
     * event, which is part of the ContentHandler interface.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   151
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   152
     * <p>Because of the streaming event model that SAX uses, some
7f561c08de6b Initial load
duke
parents:
diff changeset
   153
     * entity boundaries cannot be reported under any
7f561c08de6b Initial load
duke
parents:
diff changeset
   154
     * circumstances:</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   155
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   156
     * <ul>
7f561c08de6b Initial load
duke
parents:
diff changeset
   157
     * <li>general entities within attribute values</li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   158
     * <li>parameter entities within declarations</li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   159
     * </ul>
7f561c08de6b Initial load
duke
parents:
diff changeset
   160
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   161
     * <p>These will be silently expanded, with no indication of where
7f561c08de6b Initial load
duke
parents:
diff changeset
   162
     * the original entity boundaries were.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   163
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   164
     * <p>Note also that the boundaries of character references (which
7f561c08de6b Initial load
duke
parents:
diff changeset
   165
     * are not really entities anyway) are not reported.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   166
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   167
     * <p>All start/endEntity events must be properly nested.
7f561c08de6b Initial load
duke
parents:
diff changeset
   168
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   169
     * @param name The name of the entity.  If it is a parameter
7f561c08de6b Initial load
duke
parents:
diff changeset
   170
     *        entity, the name will begin with '%', and if it is the
7f561c08de6b Initial load
duke
parents:
diff changeset
   171
     *        external DTD subset, it will be "[dtd]".
7f561c08de6b Initial load
duke
parents:
diff changeset
   172
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   173
     * @see #endEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
   174
     * @see org.xml.sax.ext.DeclHandler#internalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   175
     * @see org.xml.sax.ext.DeclHandler#externalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   176
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   177
    public abstract void startEntity (String name)
7f561c08de6b Initial load
duke
parents:
diff changeset
   178
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   179
7f561c08de6b Initial load
duke
parents:
diff changeset
   180
7f561c08de6b Initial load
duke
parents:
diff changeset
   181
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   182
     * Report the end of an entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
   183
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   184
     * @param name The name of the entity that is ending.
7f561c08de6b Initial load
duke
parents:
diff changeset
   185
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   186
     * @see #startEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
   187
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   188
    public abstract void endEntity (String name)
7f561c08de6b Initial load
duke
parents:
diff changeset
   189
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   190
7f561c08de6b Initial load
duke
parents:
diff changeset
   191
7f561c08de6b Initial load
duke
parents:
diff changeset
   192
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   193
     * Report the start of a CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
   194
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   195
     * <p>The contents of the CDATA section will be reported through
7f561c08de6b Initial load
duke
parents:
diff changeset
   196
     * the regular {@link org.xml.sax.ContentHandler#characters
7f561c08de6b Initial load
duke
parents:
diff changeset
   197
     * characters} event; this event is intended only to report
7f561c08de6b Initial load
duke
parents:
diff changeset
   198
     * the boundary.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   199
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   200
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   201
     * @see #endCDATA
7f561c08de6b Initial load
duke
parents:
diff changeset
   202
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   203
    public abstract void startCDATA ()
7f561c08de6b Initial load
duke
parents:
diff changeset
   204
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   205
7f561c08de6b Initial load
duke
parents:
diff changeset
   206
7f561c08de6b Initial load
duke
parents:
diff changeset
   207
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   208
     * Report the end of a CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
   209
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   210
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   211
     * @see #startCDATA
7f561c08de6b Initial load
duke
parents:
diff changeset
   212
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   213
    public abstract void endCDATA ()
7f561c08de6b Initial load
duke
parents:
diff changeset
   214
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   215
7f561c08de6b Initial load
duke
parents:
diff changeset
   216
7f561c08de6b Initial load
duke
parents:
diff changeset
   217
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   218
     * Report an XML comment anywhere in the document.
7f561c08de6b Initial load
duke
parents:
diff changeset
   219
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   220
     * <p>This callback will be used for comments inside or outside the
7f561c08de6b Initial load
duke
parents:
diff changeset
   221
     * document element, including comments in the external DTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   222
     * subset (if read).  Comments in the DTD must be properly
7f561c08de6b Initial load
duke
parents:
diff changeset
   223
     * nested inside start/endDTD and start/endEntity events (if
7f561c08de6b Initial load
duke
parents:
diff changeset
   224
     * used).</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   225
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   226
     * @param ch An array holding the characters in the comment.
7f561c08de6b Initial load
duke
parents:
diff changeset
   227
     * @param start The starting position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
   228
     * @param length The number of characters to use from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
   229
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   230
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   231
    public abstract void comment (char ch[], int start, int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
   232
        throws SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   233
7f561c08de6b Initial load
duke
parents:
diff changeset
   234
}
7f561c08de6b Initial load
duke
parents:
diff changeset
   235
7f561c08de6b Initial load
duke
parents:
diff changeset
   236
// end of LexicalHandler.java