001    /*
002     * To change this template, choose Tools | Templates
003     * and open the template in the editor.
004     */
005    
006    package org.util.xml.parse;
007    
008    import java.io.PrintWriter;
009    import java.io.StringWriter;
010    import org.util.xml.parse.policy.ParserPolicy;
011    import org.util.xml.element.Attribute;
012    import org.util.xml.element.TagElement;
013    import org.util.xml.element.TextElement;
014    
015    /**
016     *
017     * @author masaru
018     */
019    public class XMLParser extends ElementParser {
020            
021    }