Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isTargetProperty (0.07 sec)

  1. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

            assertThat(option.isTargetProperty("hoge"), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTargetProperty_includes() throws Exception {
            final CopyOptions option = new CopyOptions().include(BeanNames.hoge());
            assertThat(option.isTargetProperty("hoge"), is(true));
            assertThat(option.isTargetProperty("hoge2"), is(not(true)));
        }
    
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 12K bytes
    - Viewed (0)
  2. 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);
                if (!destBeanDesc.hasPropertyDesc(destPropertyName)) {
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 20K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         * Returns whether the property is a target property.
         *
         * @param name
         *            The property name
         * @return Whether the property is a target property
         */
        protected boolean isTargetProperty(final String name) {
            if (prefix != null && !name.startsWith(prefix)) {
                return false;
            }
            if (!includePropertyNames.isEmpty()) {
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 17.4K bytes
    - Viewed (0)
Back to top