Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for propertyName (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

        private final Class<?> targetClass;
    
        private final String propertyName;
    
        /**
         * {@link PropertyNotFoundRuntimeException}を返します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         */
        public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) {
            super("ECL0065", asArray(targetClass.getName(), propertyName));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod,
                final Field field, final BeanDesc beanDesc) {
            assertArgumentNotEmpty("propertyName", propertyName);
            assertArgumentNotNull("propertyType", propertyType);
            assertArgumentNotNull("beanDesc", beanDesc);
    
            this.propertyName = propertyName;
            this.propertyType = propertyType;
    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)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java

            this.propertyName = propertyName;
            this.value = value;
        }
    
        /**
         * プロパティ名を返します。
         *
         * @return プロパティ名
         */
        public String getPropertyName() {
            return propertyName;
        }
    
        /**
         * 値を返します。
         *
         * @return 値
         */
        public Object getValue() {
            return value;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java

        private final String propertyName;
    
        /**
         * {@link IllegalPropertyRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         * @param cause
         *            原因となった例外
         */
        public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public boolean hasPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            return propertyDescCache.get(propertyName) != null;
        }
    
        @Override
        public PropertyDesc getPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            final PropertyDesc pd = propertyDescCache.get(propertyName);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

        private final List<ReplacedAccessor> replacedAccessors;
    
        public UpgradedProperty(String containingType, String propertyName, String methodName, String methodDescriptor, List<ReplacedAccessor> replacedAccessors) {
            this.containingType = containingType;
            this.propertyName = propertyName;
            this.methodName = methodName;
            this.methodDescriptor = methodDescriptor;
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * 操作の対象に含めるプロパティ名を追加します。
         *
         * @param propertyNames
         *            プロパティ名の並び。{@literal null}や空配列であってはいけません
         * @return このインスタンス自身
         */
        public CopyOptions include(final CharSequence... propertyNames) {
            assertArgumentNotEmpty("propertyNames", propertyNames);
    
            includePropertyNames.addAll(toStringList(propertyNames));
            return this;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top