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 3.5.4.0 (2003/11/25) æ–°è¦ä½œæ?
028     * @og.rev 5.0.0.3 (2009/09/22) FIRST_CLM_GOKEI_KEY追�
029     * @og.group ãã?ä»?
030     *
031     * @version  4.0
032     * @author       Kazuhiko Hasegawa
033     * @since    JDK5.0,
034     */
035    public class ViewCrossTableParam {
036    
037            /** パラメータ定数 {@value} */
038            public static final String SHOKEI       = "row_hs" ;
039            /** パラメータ定数 {@value} */
040            public static final String HEADER1      = "row_h1" ;
041            /** パラメータ定数 {@value} */
042            public static final String HEADER2      = "row_h2" ;
043    
044            /** パラメータ定数 {@value} */
045            public static final String BREAK_COLUMN_KEY             = "h_breakColumn" ;
046            /** パラメータ定数 {@value} */
047            public static final String NO_GROUP_COLUMNS_KEY = "h_noGroupColumns" ;
048            /** パラメータ定数 {@value} */
049            public static final String SUM_NUMBER_KEY               = "h_sumNumber"   ;
050            /** パラメータ定数 {@value} */
051            public static final String CUBE_X_COLUMN_KEY    = "h_cubeXColumn" ;
052            /** パラメータ定数 {@value} */
053            public static final String CUBE_Y_COLUMN_KEY    = "h_cubeYColumn" ;
054            /** パラメータ定数 {@value} */
055            public static final String SHOKEI_LABEL_KEY     = "h_shokeiLabel" ;
056            /** パラメータ定数 {@value} */
057            public static final String GOKEI_LABEL_KEY              = "h_gokeiLabel"  ;
058            /** パラメータ定数 {@value} */
059            public static final String CUBE_SORT_TYPE_KEY   = "h_cubeSortType" ;
060            /** パラメータ定数 {@value} */
061            public static final String GOKEI_SORT_DIR_KEY   = "h_gokeiSortDir" ;
062            /** パラメータ定数 {@value} */
063            public static final String FIRST_CLM_GOKEI_KEY  = "h_firstClmGokei" ;   // 5.0.0.3 (2009/09/22)
064            /** パラメータ定数 {@value} */
065            public static final String USE_HEADER_COLUMN    = "h_useHeaderColumn" ; // 5.2.2.0 (2010/11/01)
066            /** パラメータ定数 {@value} */
067            public static final String USE_CLASS_ADD                = "h_useClassAdd" ;             // 5.2.2.0 (2010/11/01)
068            /** パラメータ定数 {@value} */
069            public static final String SAVE_TABLEID_KEY     = "h_saveTableId" ;             // 5.2.2.0 (2010/11/01)
070            /** パラメータ定数 {@value} */
071            public static final String SAVE_SCOPE_KEY               = "h_saveScope" ;               // 5.2.2.0 (2010/11/01)
072            /** パラメータ定数 {@value} */
073            public static final String USE_HEADER_RSC               = "h_useHeaderResource" ;       // 5.5.5.0 (2012/07/20)
074            /** パラメータ定数 {@value} */
075            public static final String HEADER_CODE_KEY              = "h_headerCode" ;              // 5.5.5.0 (2012/07/20)
076    }