1 27 package org.htmlparser.scanners; 28 29 import java.io.Serializable ; 30 31 import org.htmlparser.Tag; 32 import org.htmlparser.lexer.Lexer; 33 import org.htmlparser.util.NodeList; 34 import org.htmlparser.util.ParserException; 35 36 45 public class TagScanner 46 implements 47 Scanner, 48 Serializable  49 { 50 53 public TagScanner () 54 { 55 } 56 57 67 public Tag scan (Tag tag, Lexer lexer, NodeList stack) throws ParserException 68 { 69 tag.doSemanticAction (); 70 71 return (tag); 72 } 73 } 74 | Popular Tags |