Examples of SpiDataModelMirrorRepository


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
Copyright © 2018 www.massapi.com. 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.