Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 373 for bean (0.17 sec)

  1. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o targetProcedureCatalogList: (NotRequired - Default list:{})
        #  You can specify target catalog of generated parameter bean for procedure.
        #  This property is valid only when generateProcedureParameterBean is valid.
        #
        #; targetProcedureCatalogList = list:{FOO_CATALOG ; prefix:FOO_ ; suffix:_FOO ; contain:_FOO_}
        # - - - - - - - - - -/
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         * o saveInfo() <span style="color: #3F7E5E">// save messages to session</span>
         * o write() <span style="color: #3F7E5E">// write text to specified file</span>
         * o copyBeanToBean() <span style="color: #3F7E5E">// copy bean to bean by BeanUtil</span>
         * o getServletContext() <span style="color: #3F7E5E">// get servlet context</span>
         * </pre>
         */
        @Override
        public void document1_CallableSuperMethod() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

                dest.put(destPropertyName, convertedValue);
            }
        }
    
        /**
         * コピー元のBeanを新しいBeanのインスタンスにコピーして返します。
         *
         * @param <T> コピー先となるBeanの型
         * @param src コピー元のBean。{@literal null}であってはいけません
         * @param destClass コピー先となるBeanの型。{@literal null}であってはいけません
         * @return コピーされた新しいBean
         */
        public static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) {
    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)
  4. src/main/java/org/codelibs/core/beans/BeanDesc.java

     *     }
     * }
     * </pre>
     *
     * @author higa
     * @see BeanDescFactory
     */
    public interface BeanDesc {
    
        /**
         * Beanのクラスを返します。
         *
         * @param <T>
         *            Beanのクラス
         * @return Beanのクラス
         */
        <T> Class<T> getBeanClass();
    
        /**
         * 型変数から型引数へのマップを返します。
         *
         * @return 型変数から型引数へのマップ
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

         */
        @Test
        public void testCopyBeanToBean_converter() throws Exception {
            final Bean bean = new Bean();
            bean.aaa = "1,000";
            final Bean2 bean2 = new Bean2();
            BeanUtil.copyBeanToBean(bean, bean2, converter(new NumberConverter("#,##0")));
            assertThat(bean2.aaa, is(new Integer(1000)));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        //                                                                        ============
        protected JsonResponse<ApiResult> asJson(final ApiResult bean) {
            return new JsonResponse<>(bean);
        }
    
        protected ApiResult createFailureBean(final Status status, final String message) {
            return new ApiErrorResponse().message(message).status(status).result();
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

    import org.dbflute.bhv.writable.DeleteOption;
    import org.dbflute.bhv.writable.InsertOption;
    import org.dbflute.bhv.writable.UpdateOption;
    import org.dbflute.cbean.ConditionBean;
    import org.dbflute.cbean.coption.CursorSelectOption;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.exception.FetchingOverSafetySizeException;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

         * このコンストラクタを所有するクラスの{@link BeanDesc}を返します。
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * コンストラクタを返します。
         *
         * @param <T>
         *            Beanの型
         * @return コンストラクタ
         */
        <T> Constructor<T> getConstructor();
    
        /**
         * コンストラクタの引数型の配列を返します。
         *
         * @return コンストラクタの引数型の配列
         */
        Class<?>[] getParameterTypes();
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java

     */
    package org.codelibs.core.beans.factory;
    
    import static org.codelibs.core.collection.CollectionsUtil.newConcurrentHashMap;
    import static org.codelibs.core.collection.CollectionsUtil.putIfAbsent;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.concurrent.ConcurrentMap;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.impl.BeanDescImpl;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #     Table names on SQL executed by condition-bean or behavior
        #     are forcedly treated as upper case. (except outside-SQL)
        #
        #; isTableSqlNameUpperCase = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isColumnSqlNameUpperCase: (NotRequired - Default false)
        #   [true]
        #     Column names on SQL executed by condition-bean or behavior
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8.8K bytes
    - Viewed (0)
Back to top