Package com.asakusafw.modelgen.model

Examples of com.asakusafw.modelgen.model.TableModelDescription


    /**
     * 集約すべきカラムを集約していない。
     */
    @Test(expected = RuntimeException.class)
    public void invalidIdent() {
        TableModelDescription desc = new TableModelBuilder("A")
            .add(null, "word", PropertyTypeKind.STRING)
            .add(null, "value", PropertyTypeKind.INT)
            .toDescription();

        new SummarizedModelBuilder("S", desc, "a")
View Full Code Here

TOP

Related Classes of com.asakusafw.modelgen.model.TableModelDescription

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.