Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags
In directory sc8-pr-cvs1:/tmp/cvs-serv2400/org/htmlparser/tags
Added Files:
HeadTag.java
Log Message:
From Dhaval: Created the HEAD tag-scanner pair and corrected the BodyScanner.
There were some mistakes after the redisgn that took place.
--- NEW FILE: HeadTag.java ---
// HTMLParser Library v1_3_20030511 - A java-based parser for HTML
// Copyright (C) Dec 31, 2000 Somik Raha
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// For any questions or suggestions, you can write to me at :
// Email :so...@in...
//
// Postal Address :
// Somik Raha
// Extreme Programmer & Coach
// Industrial Logic Corporation
// 2583 Cedar Street, Berkeley,
// CA 94708, USA
// Website : http://www.industriallogic.com
//
// This class was contributed by Dhaval Udani
// dha...@or...
package org.htmlparser.tags;
import org.htmlparser.tags.data.CompositeTagData;
import org.htmlparser.tags.data.TagData;
public class HeadTag extends CompositeTag {
public HeadTag(TagData tagData, CompositeTagData compositeTagData) {
super(tagData, compositeTagData);
}
public String toString() {
return "HEAD: " + super.toString();
}
}
|