Package com.asakusafw.dmdl.directio.sequencefile.driver.SequenceFileFormatTrait

Examples of com.asakusafw.dmdl.directio.sequencefile.driver.SequenceFileFormatTrait.Configuration


    }

    @Override
    public void process(DmdlSemantics environment, ModelDeclaration declaration, AstAttribute attribute) {
        Map<String, AstAttributeElement> elements = AttributeUtil.getElementMap(attribute);
        Configuration conf = analyzeConfig(environment, attribute, elements);
        if (conf != null) {
            declaration.putTrait(SequenceFileFormatTrait.class, new SequenceFileFormatTrait(attribute, conf));
        }
    }
View Full Code Here


            AstAttribute attribute,
            Map<String, AstAttributeElement> elements) {
        assert environment != null;
        assert attribute != null;
        assert elements != null;
        Configuration result = new Configuration();
        return result;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.directio.sequencefile.driver.SequenceFileFormatTrait.Configuration

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.