Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isReadable (0.06 sec)

  1. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            for (final PropertyDesc srcPropertyDesc : srcBeanDesc.getPropertyDescs()) {
                final String srcPropertyName = srcPropertyDesc.getPropertyName();
                if (!srcPropertyDesc.isReadable() || !options.isTargetProperty(srcPropertyName)) {
                    continue;
                }
                final String destPropertyName = options.trimPrefix(srcPropertyName);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            this.field = field;
            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) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top