Search in sources :

Example 1 with DfBeanDescImpl

use of org.dbflute.helper.beans.impl.DfBeanDescImpl in project dbflute-core by dbflute.

the class DfBeanDescFactory method getBeanDesc.

// ===================================================================================
// Main
// ====
public static DfBeanDesc getBeanDesc(Class<?> clazz) {
    DfBeanDesc beanDesc = beanDescCache.get(clazz);
    if (beanDesc == null) {
        beanDesc = new DfBeanDescImpl(clazz);
        beanDescCache.put(clazz, beanDesc);
    }
    return beanDesc;
}
Also used : DfBeanDescImpl(org.dbflute.helper.beans.impl.DfBeanDescImpl) DfBeanDesc(org.dbflute.helper.beans.DfBeanDesc)

Aggregations

DfBeanDesc (org.dbflute.helper.beans.DfBeanDesc)1 DfBeanDescImpl (org.dbflute.helper.beans.impl.DfBeanDescImpl)1