Package com.et.ar.annotations

Examples of com.et.ar.annotations.Table


    }
   
    public static OrmInfo getOrmInfo(Class<?> clasz){
        OrmInfo orm = new OrmInfo();
       
        Table t = clasz.getAnnotation(Table.class);
        if (t != null) {
          orm.table = t.name();
        }
       
        List<ColumnField> columnFields = new ArrayList<ColumnField>();
        List<HasManyField> hasManyFields = new ArrayList<HasManyField>();
        List<HasOneField> hasOneFields = new ArrayList<HasOneField>();
View Full Code Here

TOP

Related Classes of com.et.ar.annotations.Table

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.