Parcourir la source

draft: IComponent

Ranides Atterwim il y a 2 ans
Parent
commit
5590d1233f

+ 1 - 1
assira.core/src/main/java/net/ranides/assira/reflection/BeanModelUtils.java

@@ -17,7 +17,7 @@ public class BeanModelUtils {
         return BeanModel.typefor(that).properties(that);
     }
 
-    public static Optional<Wrapper<Object>> property(Object that, String property) {
+    public static Optional<BeanPropertyWrapper<Object>> property(Object that, String property) {
         return BeanModel.typefor(that).property(property).map(v -> v.bind(that));
     }