- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ConstructorDescImpl (0.08 seconds)
-
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;Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 5K bytes - Click Count (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() {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1)