如何在Codenameone中确定PropertyBusinessObject中属性的名称和类型?

时间:2019-02-01 09:53:42

标签: codenameone

是否可以在属性业务对象中检索属性的名称和类型?

1 个答案:

答案 0 :(得分:1)

这叫做自省:

PropertyBusinessObject pb = ...;
PropertyIndex idx = pb.getPropertyIndex();
for(PropertyBase b : idx) {
    String propertyName = b.getName();
    Class type = b.getGenericType();
    //...
}