Package dk.brics.xact

Examples of dk.brics.xact.Comment


        siblings.peek().push(new ProcessingInstruction(target, data, getOrigin()));
    }

    @Override
    public void comment(char[] ch, int start, int length) {
        siblings.peek().push(new Comment(new String(ch, start, length), getOrigin()));
    }
View Full Code Here

TOP

Related Classes of dk.brics.xact.Comment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.