- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ConstructorDescImpl (0.62 sec)
-
src/main/java/org/codelibs/core/beans/impl/ConstructorDescImpl.java
import org.codelibs.core.beans.factory.ParameterizedClassDescFactory; import org.codelibs.core.lang.ConstructorUtil; /** * Implementation class of {@link ConstructorDesc}. * * @author koichik */ public class ConstructorDescImpl implements ConstructorDesc { /** The {@link BeanDesc} of the class that owns this method */ protected final BeanDesc beanDesc; /** Constructor */ protected final Constructor<?> constructor;Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
/** * Prepares the constructors. */ protected void setupConstructorDescs() { for (final Constructor<?> constructor : beanClass.getConstructors()) { constructorDescs.add(new ConstructorDescImpl(this, constructor)); } } /** * Prepares the methods. */ protected void setupMethodDescs() {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1)