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 */
016 package 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 */
034 public 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 }