Package com.asakusafw.vocabulary.flow

Examples of com.asakusafw.vocabulary.flow.JobFlow


    public List<String> getDiagnostics() {
        return diagnostics;
    }

    private void analyze() {
        JobFlow config = findConfig();
        Constructor<? extends FlowDescription> ctor = findConstructor();
        if (ctor == null) {
            return;
        }
        FlowDescriptionDriver driver = parseParameters(ctor);
View Full Code Here


            error(null, "ジョブフロークラスはpublicで宣言する必要があります");
        }
        if (Modifier.isAbstract(description.getModifiers())) {
            error(null, "ジョブフロークラスはabstractで宣言できません");
        }
        JobFlow conf = description.getAnnotation(JobFlow.class);
        if (conf == null) {
            error(null, "ジョブフロークラスには@JobFlow注釈の付与が必要です");
        }
        return conf;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.vocabulary.flow.JobFlow

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.