- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PropertyDesc (0.97 sec)
-
src/main/java/org/codelibs/core/beans/PropertyDesc.java
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Collection; import java.util.Map; /** * Interface for handling properties. * * @author higa */ public interface PropertyDesc { /** * Returns the property name. * * @return the property name */ String getPropertyName(); /** * Returns the property type. * * @param <T>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
* @return {@link PropertyDesc} */ PropertyDesc getPropertyDesc(String propertyName); /** * Returns the {@link PropertyDesc}. * * @param index * The index of the {@link PropertyDesc} * @return {@link PropertyDesc} */ PropertyDesc getPropertyDesc(int index); /** * Returns the number of {@link PropertyDesc}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0)