001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.hayabusa.html;
017
018/**
019 * Ajaxツリーテーブルクラス用のパラメータ定数設定クラスです。
020 *
021 * パラメータのキーとなる値と、初期値を設定しています。
022 * すべて、public static final で定義されている為、設定値はドキュメント等で
023 * 確認することが可能です。
024 * ただし、キー値などを、直書きすることを前提に公開していませんので、
025 * 必要であれば、定数として、このクラス経由で使用してください。
026 *
027 * @og.rev 4.3.1.0 (2008/09/03) 新規作成
028 * @og.group その他
029 *
030 * @version  4.0
031 * @author       Hiroki Nakamura
032 * @since    JDK5.0,
033 */
034public final class ViewAjaxTreeTableParam {
035
036        /** パラメータ定数 {@value} */
037        public static final String CHILD_SEARCH_JSP       = "h_child_search_jsp" ;
038        /** パラメータ定数 {@value} */
039        public static final String CHILD_SEARCH_KEYS      = "h_child_search_keys" ;
040        /** パラメータ定数 {@value} */
041        public static final String LVL_CLM_KEY            = "h_lvl_clm_key" ;
042        /** パラメータ定数 {@value} */
043        public static final String IMG_COLLAPSED          = "h_img_collapsed"   ;
044        /** パラメータ定数 {@value} */
045        public static final String IMG_EXPANDED           = "h_img_expanded"  ;
046        /** パラメータ定数 {@value} */
047        public static final String IMG_NO_SUB             = "h_img_nosub"  ;
048        /** パラメータ定数 {@value} */
049        public static final String EXPAND_ALL             = "h_expand_all" ; // 4.3.3.0 (2008/10/01)
050        /** パラメータ定数 {@value} */
051        public static final String CHILD_VIEW_START_NO    = "h_child_view_start_no" ; // 4.3.3.0 (2008/10/01)
052        /** パラメータ定数 {@value} */
053        public static final String EXPAND_CONTROL_CLM_KEY = "h_exp_ctrl_clm_key" ; // 4.3.5.0 (2008/02/01)
054
055        /**
056         * デフォルトコンストラクターをprivateにして、
057         * オブジェクトの生成をさせないようにする。
058         *
059         * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor.
060         */
061        private ViewAjaxTreeTableParam() { super(); }           // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
062}