Package com.asakusafw.compiler.repository

Examples of com.asakusafw.compiler.repository.SpiDataModelMirrorRepository


     * @throws OperatorCompilerException 引数の解析に失敗した場合
     */
    public static OperatorCompilerOptions parse(Map<String, String> options) {
        Precondition.checkMustNotBeNull(options, "options"); //$NON-NLS-1$
        ClassLoader serviceClassLoader = OperatorCompilerOptions.class.getClassLoader();
        DataModelMirrorRepository dataModelRepository = new SpiDataModelMirrorRepository(serviceClassLoader);
        Map<String, String> properties = Maps.freeze(options);
        return new OperatorCompilerOptions(serviceClassLoader, dataModelRepository, properties);
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.repository.SpiDataModelMirrorRepository

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.