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;
}
Aggregations