Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for writable (0.17 sec)

  1. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            if (field != null && ModifierUtil.isPublic(field)) {
                readable = true;
                writable = true;
            }
        }
    
        @Override
        public boolean isReadable() {
            return readable;
        }
    
        @Override
        public boolean isWritable() {
            return writable;
        }
    
        @Override
        public <T> T getValue(final Object target) {
    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)
  2. src/main/resources/CLMessages.properties

    ECL0099=Field({1}) of class({0}) is not a static field.
    ECL0100=Method({1}) of class({0}) is not a static method.
    ECL0101=File({0}) is not exist or not readable.
    ECL0102=File({0}) is not exist or not writable.
    ECL0103=Type({0}) is an interface not a class.
    ECL0104=Argument({0}) is not an array.
    ECL0105=Rethrew {0} as a runtime exception.
    ECL0106=IOException occurred, because {0}
    ECL0107=InvalidKeyException occurred, 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)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

         */
        public static String defaultString(final String str, final String defaultStr) {
            return str == null ? defaultStr : str;
        }
    
        /**
         * <p>Checks if the CharSequence contains only ASCII printable characters.</p>
         *
         * <p>{@code null} will return {@code false}.
         * An empty CharSequence (length()=0) will return {@code true}.</p>
         *
         * <pre>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

                    continue;
                }
                final PropertyDesc destPropertyDesc = destBeanDesc.getPropertyDesc(destPropertyName);
                if (!destPropertyDesc.isWritable()) {
                    continue;
                }
                final Object value = srcPropertyDesc.getValue(src);
                if (!options.isTargetValue(value)) {
                    continue;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         *
         * @return プロパティの値が取得できるかどうか
         */
        boolean isReadable();
    
        /**
         * プロパティの値が設定できるかどうかを返します。
         *
         * @return プロパティの値が設定できるかどうか
         */
        boolean isWritable();
    
        /**
         * プロパティとして認識しているpublicフィールドを返します。
         *
         * @return プロパティとして認識するpublicフィールド
         */
        Field getField();
    
        /**
         * プロパティの値を返します。
         *
         * @param <T>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.9K bytes
    - Viewed (0)
Back to top