Package play.core

Examples of play.core.BuildDocHandler


    /**
     * Create a BuildDocHandler that doesn't do anything.
     * Used when the documentation jar file is not available.
     */
    public static BuildDocHandler empty() {
        return new BuildDocHandler() {
            @Override
            public Object maybeHandleDocRequest(Object request) {
                return Option.apply(null);
            }
        };
View Full Code Here

TOP

Related Classes of play.core.BuildDocHandler

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.