KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > cyberneko > html > parsers > SAXParser


1 /*
2  * (C) Copyright 2002-2005, Andy Clark. All rights reserved.
3  *
4  * This file is distributed under an Apache style license. Please
5  * refer to the LICENSE file for specific details.
6  */

7
8 package org.cyberneko.html.parsers;
9
10 import org.apache.xerces.parsers.AbstractSAXParser;
11 import org.cyberneko.html.HTMLConfiguration;
12
13 /**
14  * A SAX parser for HTML documents.
15  *
16  * @author Andy Clark
17  *
18  * @version $Id: SAXParser.java,v 1.4 2005/02/14 03:56:54 andyc Exp $
19  */

20 public class SAXParser
21     extends AbstractSAXParser {
22
23     //
24
// Constructors
25
//
26

27     /** Default constructor. */
28     public SAXParser() {
29         super(new HTMLConfiguration());
30     } // <init>()
31

32 } // class SAXParser
33
Popular Tags