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 class ViewAjaxTreeTableParam {
035        /** パラメータ定数 {@value} */
036        public static final String CHILD_SEARCH_JSP       = "h_child_search_jsp" ;
037        /** パラメータ定数 {@value} */
038        public static final String CHILD_SEARCH_KEYS      = "h_child_search_keys" ;
039        /** パラメータ定数 {@value} */
040        public static final String LVL_CLM_KEY            = "h_lvl_clm_key" ;
041        /** パラメータ定数 {@value} */
042        public static final String IMG_COLLAPSED          = "h_img_collapsed"   ;
043        /** パラメータ定数 {@value} */
044        public static final String IMG_EXPANDED           = "h_img_expanded"  ;
045        /** パラメータ定数 {@value} */
046        public static final String IMG_NO_SUB             = "h_img_nosub"  ;
047        /** パラメータ定数 {@value} */
048        public static final String EXPAND_ALL             = "h_expand_all" ; // 4.3.3.0 (2008/10/01)
049        /** パラメータ定数 {@value} */
050        public static final String CHILD_VIEW_START_NO    = "h_child_view_start_no" ; // 4.3.3.0 (2008/10/01)
051        /** パラメータ定数 {@value} */
052        public static final String EXPAND_CONTROL_CLM_KEY = "h_exp_ctrl_clm_key" ; // 4.3.5.0 (2008/02/01)
053}