Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for FieldNotStaticRuntimeException (0.21 seconds)

  1. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

         */
        private final String fieldName;
    
        /**
         * Creates a {@link FieldNotStaticRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param fieldName
         *            Field name
         */
        public FieldNotStaticRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0099", asArray(targetClass.getName(), fieldName));
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/core/beans/impl/FieldDescImplTest.java

    import java.util.Map;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.FieldDesc;
    import org.codelibs.core.beans.ParameterizedClassDesc;
    import org.codelibs.core.exception.FieldNotStaticRuntimeException;
    import org.junit.Test;
    
    /**
     * @author koichik
     */
    public class FieldDescImplTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testHOGE() throws Exception {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

    import org.codelibs.core.beans.FieldDesc;
    import org.codelibs.core.beans.ParameterizedClassDesc;
    import org.codelibs.core.beans.factory.ParameterizedClassDescFactory;
    import org.codelibs.core.exception.FieldNotStaticRuntimeException;
    import org.codelibs.core.lang.FieldUtil;
    
    /**
     * Implementation class of {@link FieldDesc}.
     *
     * @author koichik
     */
    public class FieldDescImpl implements FieldDesc {
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 5.1K bytes
    - Click Count (0)
Back to Top