Package com.asakusafw.modelgen.emitter

Examples of com.asakusafw.modelgen.emitter.JavaName


        this.key = key;
        this.columnMatchingCondition = columnMatchingCondition;
        this.nullValueCondition = nullValueCondition;

        // FIXME modelgenの方にロジックを持たせる
        JavaName javaName = JavaName.of(columnName);
        getterName = "get" + javaName.toTypeName() + "Option";
        setterName = "set" + javaName.toTypeName() + "Option";
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.modelgen.emitter.JavaName

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.