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.group そ??
028     *
029     * @version  4.0
030     * @author       Kazuhiko Hasegawa
031     * @since    JDK5.0,
032     */
033    public class ViewGanttTableParam {
034    
035            // 3.5.5.8 (2004/05/20) taglib/ViewGanttParamTag 用のキー
036            /** パラメータキー {@value} */
037            public static final String GROUP_COLUMNS_KEY   = "h_groupColumns"   ;
038            /** パラメータキー {@value} */
039            public static final String DURATION_COLUMN_KEY = "h_durationColumn" ;
040            /** パラメータキー {@value} */
041            public static final String DYSTART_COLUMN_KEY  = "h_dystartColumn"  ;
042            /** パラメータキー {@value} */
043            public static final String DYSTART_FORMAT_KEY  = "h_dystartFormat"  ;
044            /** パラメータキー {@value} */
045            public static final String MIN_DURATION_KEY    = "h_minDuration"    ;
046            /** パラメータキー {@value} */
047            public static final String HEADER_DURATION_KEY = "h_headerDuration" ;
048            /** パラメータキー {@value} */
049            public static final String HEADER_LOCALE_KEY   = "h_headerLocale"   ;
050            /** パラメータキー {@value} */
051            public static final String USE_SEQ_DAY_KEY     = "h_useSeqDay"      ;
052            /** パラメータキー {@value} */
053            public static final String START_DAY_KEY       = "h_startDay"       ;
054            /** パラメータキー {@value} */
055            public static final String END_DAY_KEY         = "h_endDay"         ;
056    
057            // 3.5.5.8 (2004/05/20) taglib/ViewGanttParamTag 用の初期値
058            /** パラメータ初期値:{@value} */
059            public static final String GROUP_COLUMNS_VALUE   = "PRJCODE,RESOURCE_ID"  ;
060            /** パラメータ初期値:{@value} */
061            public static final String DYSTART_COLUMN_VALUE  = "DYSTART"  ;
062            /** パラメータ初期値:{@value} */
063            public static final String DYSTART_FORMAT_VALUE  = "yyyyMMdd" ;
064            /** パラメータ初期値:{@value} */
065            public static final String MIN_DURATION_VALUE    = "1.0"      ;
066            /** パラメータ初期値:{@value} */
067            public static final String HEADER_LOCALE_VALUE   = "ja"       ;
068            /** パラメータ初期値:{@value} */
069            public static final String USE_SEQ_DAY_VALUE     = "false"    ;
070    }