Package com.asakusafw.compiler.flow.FlowCompilerOptions

Examples of com.asakusafw.compiler.flow.FlowCompilerOptions.GenericOptionValue


        }
        return sourceFiles;
    }

    private boolean skipCompile() {
        GenericOptionValue option = getEnvironment().getOptions()
                .getGenericExtraAttribute(KEY_OPTION_PACKAGING, GenericOptionValue.ENABLED);
        if (option == GenericOptionValue.INVALID) {
            getEnvironment().error(
                    "Invalid valud for compiler option \"{0}\" ({1}), this must be {2}",
                    getEnvironment().getOptions().getExtraAttributeKeyName(KEY_OPTION_PACKAGING),
View Full Code Here


        return results;
    }

    private void compressFlowBlockGroups(List<FlowBlockGroup> flowBlockGroups) {
        assert flowBlockGroups != null;
        GenericOptionValue active = options.getGenericExtraAttribute(
                KEY_COMPRESS_FLOW_BLOCK_GROUP,
                DEFAULT_COMPRESS_FLOW_BLOCK_GROUP);
        if (active == GenericOptionValue.DISABLED) {
            return;
        }
View Full Code Here

    }

    private boolean validateOutputs(List<OutputDescription> outputs) {
        assert outputs != null;
        boolean valid = true;
        GenericOptionValue exporterEnabled = getEnvironment().getOptions().getGenericExtraAttribute(
                OPTION_EXPORTER_ENABLED,
                DEFAULT_EXPORTER_ENABLED);
        if (exporterEnabled == GenericOptionValue.INVALID) {
            getEnvironment().error(
                    "Invalid valud for compiler option \"{0}\" ({1}), this must be {2}",
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.FlowCompilerOptions.GenericOptionValue

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.