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 ViewCalendarParam  {
034    
035            // 3.5.6.0 (2004/06/18) taglib/ViewCalendarParamTag 用ã®ã‚­ãƒ¼
036            /** パラメータキー {@value} */
037            public static final String VIEW_KEYS             = "h_viewKeys"          ;
038            /** パラメータキー {@value} */
039            public static final String YM_KEY                        = "h_ymKey"                     ;
040            /** パラメータキー {@value} */
041            public static final String DAY_KEY                       = "h_dayKey"            ;
042            /** パラメータキー {@value} */
043            public static final String VALUE_KEY             = "h_valueKey"          ;
044            /** パラメータキー {@value} */
045            public static final String VALUE_BR_FLAG_KEY = "h_valueBRFlagKey" ;
046            /** パラメータキー {@value} */
047            public static final String FIRSTWEEK_KEY         = "h_firstWeek"                 ;
048            /** パラメータキー {@value} */
049            public static final String HEADER_LOCALE_KEY = "h_headerLocale"  ;
050            /** パラメータキー {@value} */
051            public static final String COLUMN_SIZE_KEY       = "h_columnSize"        ;
052    
053            // 3.5.6.0 (2004/06/18) taglib/ViewCalendarParamTag 用ã®åˆæœŸå€¤
054            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
055            public static final String VIEW_VALUES                  = "CDJGS"       ;
056            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
057            public static final String YM_VALUE                             = "YYYYMM"      ;
058            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
059            public static final String DAY_VALUE                    = "DY"          ;
060            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
061            public static final String VALUE_BR_FLAG_VALUE  = "true"        ;
062            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
063            public static final String FIRSTWEEK_VALUE              = "0"           ;
064            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
065            public static final String HEADER_LOCALE_VALUE  = "en"          ;
066            /** ãƒ‘ãƒ©ãƒ¡ãƒ¼ã‚¿åˆæœŸå€¤:{@value} */
067            public static final String COLUMN_SIZE_VALUE    = "3"           ;
068    }