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 * スタãƒ?‚¯ガントチャーãƒ?ãƒ??ブル形å¼?表示クラス用のパラメータ定数定義クラスですã?
020 *
021 * パラメータのキーとなるå?と、å?期å?を設定してã�?�¾すã?
022 * すべて、public static final で定義されてã�?‚‹為、設定å?はドキュメント等で
023 * 確認することが可能ですã?
024 * ただしã?キー値などをã?直書きすることを前提に公開してã�?�¾せんのでã€?
025 * å¿?¦�であれば、定数として、このクラス経由で使用してくださいã€?
026 *
027 * @og.rev 5.5.7.0 (2012/10/01) 新規作æ?
028 * @og.rev 5.5.8.1 (2012/11/17) 追åŠ?
029 * @og.rev 5.5.9.0 (2012/12/03) STACK_CAL_KEY削除
030 * @og.rev 5.6.1.2 (2013/02/22) 能力å?関係追åŠ?
031 * @og.group そã?ä»?
032 *
033 * @version 5.0
034 * @author Takahashi Masakazu
035 * @since JDK5.0,
036 */
037 public class ViewStackTableParam {
038 /** 積上単位とするカラãƒ?��(カンマ区åˆ?‚Š)をセãƒ?ƒˆするキー {@value} */
039 public static final String STACK_COLUMNS_KEY = "h_stackColumns" ;
040 /** 工数関係ã?カラãƒ?¼ˆ工数,開始日,終äº?—¥?‰をæŒ?®šするキー {@value} */
041 public static final String COST_COLUMNS_KEY = "h_costColumn" ; // 5.5.8.3 (2012/11/17)
042 /** エンジンå†?ƒ¨で積上げするかどã�?�‹を指定するキー {@value} */
043 public static final String INNER_STACK_KEY = "h_innerStack" ; // 5.5.8.3 (2012/11/17)
044 /** エンジンå†?ƒ¨で積上げする場合に休日も積上げるかどã�?�‹を指定するキー {@value} */
045 public static final String STACK_HOLIDAY_KEY = "h_stackHoliday"; // 5.5.8.3 (2012/11/17)
046 /** 行ã?能力å?カラãƒ?‚’æŒ?®šするキー {@value} */
047 public static final String CAP_COLUMN_KEY = "h_capColumn" ; // 5.6.1.2 (2013/02/22)
048
049 /** パラメータ初期値:{@value} */
050 public static final String STACK_COLUMNS_VALUE = "" ;
051 /** パラメータ初期値:{@value} */
052 public static final String COST_COLUMNS_VALUE = "" ; // 5.5.8.2. (2012/11/17)
053 /** パラメータ初期値:{@value} */
054 public static final String INNER_STACK_VALUE = "false" ; // 5.5.8.3 (2012/11/17)
055 /** パラメータ初期値:{@value} */
056 public static final String STACK_HOLIDAY_VALUE = "true" ; // 5.5.8.3 (2012/11/17)
057 /** パラメータ初期値:{@value} */
058 public static final String CAP_COLUMN_VALUE = "" ; // 5.6.1.2 (2013/02/22)
059
060 /** Zoom設定å?:{@value} */
061 public static final String STACK_ZOOM_MONTH = "MONTH" ;
062 /** Zoom設定å?:{@value} */
063 public static final String STACK_ZOOM_WEEK = "WEEK" ;
064 /** Zoom設定å?:{@value} */
065 public static final String STACK_ZOOM_DAY = "DAY" ;
066 }