Package com.asakusafw.utils.java.model.syntax

Examples of com.asakusafw.utils.java.model.syntax.DocBlock


        assert doc != null;
        List<? extends DocBlock> blocks = doc.getBlocks();
        if (blocks.isEmpty()) {
            return Collections.emptyList();
        }
        DocBlock first = blocks.get(0);
        if (first.getTag().equals("") == false) {
            return Collections.emptyList();
        }
        return first.getElements();
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.utils.java.model.syntax.DocBlock

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.