Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Constructor (0.24 sec)

  1. src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java

    import static org.hamcrest.CoreMatchers.notNullValue;
    import static org.hamcrest.CoreMatchers.nullValue;
    import static org.hamcrest.CoreMatchers.sameInstance;
    import static org.junit.Assert.assertThat;
    
    import java.lang.reflect.Constructor;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.ConstructorDesc;
    import org.junit.Test;
    
    /**
     * @author koichik
     *
     */
    public class ConstructorDescTest {
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    import static org.codelibs.core.misc.AssertionUtil.assertState;
    
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.sql.Time;
    import java.sql.Timestamp;
    import java.util.Collection;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Constructor;
    
    /**
     * {@link Constructor}が見つからなかったときにスローされる例外Vです。
     *
     * @author higa
     */
    public class ConstructorNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 8584662068396978822L;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/ConstructorDescImpl.java

         * @param constructor
         *            コンストラクタ。{@literal null}であってはいけません
         */
        public ConstructorDescImpl(final BeanDesc beanDesc, final Constructor<?> constructor) {
            assertArgumentNotNull("beanDesc", beanDesc);
            assertArgumentNotNull("constructor", constructor);
    
            this.beanDesc = beanDesc;
            this.constructor = constructor;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/BeanDesc.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.util.Map;
    
    import org.codelibs.core.beans.factory.BeanDescFactory;
    
    /**
     * JavaBeansのメタデータを扱うためのインターフェースです。
     * <p>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.Constructor;
    import java.util.Collection;
    import java.util.Map;
    
    /**
     * コンストラクタを扱うためのインターフェースです。
     *
     * @author koichik
     */
    public interface ConstructorDesc {
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

         */
        public static ParameterizedClassDesc createParameterizedClassDesc(final Constructor<?> constructor, final int index,
                final Map<TypeVariable<?>, Type> map) {
            assertArgumentNotNull("constructor", constructor);
            assertArgumentNotNull("map", map);
    
            return createParameterizedClassDesc(constructor.getGenericParameterTypes()[index], map);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.9K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Constructor;
    
    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * {@link Constructor}が見つからない場合にスローされる{@link NoSuchMethodException}をラップする例外です。
     *
     * @author higa
     */
    public class NoSuchConstructorRuntimeException extends ClRuntimeException {
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/text/JsonUtil.java

     */
    package org.codelibs.core.text;
    
    /**
     * JSON utilities.
     *
     * @author shinsuke
     *
     */
    public class JsonUtil {
    
        /**
         * Defualt constructor.
         */
        protected JsonUtil() {
        }
    
        /**
         * Escapes a value as Json string.
         *
         * @param value input
         * @return escaped string.
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/main/resources/CLMessages.properties

    ECL0040=IOException occurred, because {0}
    ECL0042=An illegal access was generated by {0}, because {1}
    ECL0043=The target which {0} invoked is illegal, because {1}
    ECL0044=Class not found, details are {0}
    ECL0048=The constructor of {0} for arguments({1}) not found
    ECL0049=The method({1}) of {0} not found
    ECL0050=Can not parse, because {0}
    ECL0051=Can not parse of ({0})
    ECL0053=Bad parser configuration, because {0}
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top