Package org.exist.xquery.xqdoc.parser

Examples of org.exist.xquery.xqdoc.parser.XQDocLexer


            {return;}
        helper.enhance(module);
    }

    private static XQDocHelper parseComment(String desc) {
        final XQDocLexer lexer = new XQDocLexer(new StringReader(desc));
        final XQDocParser parser = new XQDocParser(lexer);
        try {
            final XQDocHelper helper = new XQDocHelper();
            parser.xqdocComment(helper);
            return helper;
View Full Code Here

TOP

Related Classes of org.exist.xquery.xqdoc.parser.XQDocLexer

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.