Package com.asakusafw.compiler.tool.batchspec.BatchSpec

Examples of com.asakusafw.compiler.tool.batchspec.BatchSpec.Parameter


                continue;
            }
            String comment = normalizeComment(parameter.comment());
            boolean required = parameter.required();
            String pattern = normalizePattern(description, parameter);
            results.add(new Parameter(key, comment, required, pattern));
            keys.add(key);
        }
        return results;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.tool.batchspec.BatchSpec.Parameter

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.