Package com.asakusafw.dmdl.model

Examples of com.asakusafw.dmdl.model.AstAttributeValueArray


                    "@{0}.{1} must be an array of name",
                    TARGET_NAME,
                    ELEMENT_NAME));
            return Collections.emptyList();
        }
        AstAttributeValueArray array = (AstAttributeValueArray) nameElement.value;
        List<PropertySymbol> properties = Lists.create();
        for (AstAttributeValue value : array.elements) {
            if ((value instanceof AstSimpleName) == false) {
                environment.report(new Diagnostic(
                        Level.ERROR,
View Full Code Here


                null,
                toName(PrimaryKeyDriver.TARGET_NAME),
                new AstAttributeElement(
                        null,
                        toSimpleName(PrimaryKeyDriver.ELEMENT_NAME),
                        new AstAttributeValueArray(null, primaryKeys)));
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.model.AstAttributeValueArray

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.