Package restx.apidocs.doclet

Examples of restx.apidocs.doclet.ApidocsDocletRunner


        if (hasJavadocTools()) {
            eventBus.register(new Object() {
                @Subscribe
                public void onCompilationFinished(
                        CompilationFinishedEvent event) {
                    new ApidocsDocletRunner()
                            .setTargetDir(getTargetClasses())
                            .addSources(event.getSources())
                            .run();
                    ;
                }
View Full Code Here

TOP

Related Classes of restx.apidocs.doclet.ApidocsDocletRunner

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.