Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FieldNotStaticRuntimeException (0.34 sec)

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

     *
     * @author koichik
     */
    public class FieldNotStaticRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -7791347225750660981L;
    
        private final Class<?> targetClass;
    
        private final String fieldName;
    
        /**
         * {@link FieldNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (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 {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5K bytes
    - Viewed (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;
    
    /**
     * {@link FieldDesc}の実装クラスです。
     *
     * @author koichik
     */
    public class FieldDescImpl implements FieldDesc {
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top