Package com.asakusafw.dmdl.model

Examples of com.asakusafw.dmdl.model.AstModelReference


            grouping.add(AstBuilder.toName(property));
        }

        return new AstJoin(
                null,
                new AstModelReference(null, AstBuilder.toName(sourceModel)),
                new AstModelMapping(null, mappings),
                grouping.isEmpty() ? null : new AstGrouping(null, grouping));
    }
View Full Code Here


            grouping.add(AstBuilder.toName(property));
        }

        return new AstSummarize(
                null,
                new AstModelReference(null, AstBuilder.toName(sourceModel)),
                new AstModelFolding(null, foldings),
                grouping.isEmpty() ? null : new AstGrouping(null, grouping));
    }
View Full Code Here

TOP

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

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.