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    }