Package com.jengine.orm.model.field

Examples of com.jengine.orm.model.field.FunctionField


        super(name, modelField);
    }

    public void config(MultiModelItem item) {
        super.config(item);
        FunctionField functionField = (FunctionField) modelField;
        for (Object attribute: functionField.getAttributes()) {
            String fieldName = attribute instanceof String ? (String) attribute : ((Field) attribute).getFieldName();
            MultiModelField attributeMultiField = multiModel.getRelatedField(item, fieldName);
            this.fields.add(attributeMultiField.getName());
            this.columns.add(attributeMultiField.getSQLName());
        }
View Full Code Here

TOP

Related Classes of com.jengine.orm.model.field.FunctionField

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.