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.plugin.column;
017
018 import org.opengion.hayabusa.common.HybsSystem;
019 import org.opengion.hayabusa.common.HybsSystemException;
020 import org.opengion.hayabusa.db.CellEditor;
021 import org.opengion.hayabusa.db.DBColumn;
022 import org.opengion.hayabusa.db.Selection;
023 import org.opengion.hayabusa.db.Selection_NUM;
024
025 /**
026 * カラãƒ??ç·¨é›?ƒ‘ラメーターã®é–‹å§‹ã?終äº??スãƒ?ƒƒãƒ—ã?æƒ??よりã€ã?ルãƒ?‚¦ãƒ³ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’作æ?ã—ã¦
027 * ç·¨é›?™ã‚‹å?åˆã«ä½¿ç”¨ã™ã‚‹ã‚¨ãƒ?‚£ã‚¿ãƒ¼ã‚¯ãƒ©ã‚¹ã§ã™ã?
028 *
029 * ã“ã“ã§ã¯ã€æ•°å—(é?番?‰ã?自動生æˆã‚’行ã„ã¾ã™ã?パラメータã§ã€?–‹å§‹ã?終äº??スãƒ?ƒƒãƒ—ã‚’æŒ?®šã—ã¾ã™ã?
030 * パラメータã®åˆæœŸå€¤ã¯ã€?–‹å§?1)ã€çµ‚äº?10)ã€ã‚¹ãƒ?ƒƒãƒ?1) ã§ã™ã?
031 *
032 * 例ï¼?,10,1 â†?1,2,3,4,5,6,7,8,9,10 ã®ãƒ—ルãƒ?‚¦ãƒ³
033 * 例ï¼?0,100,10 â†?10,20,30,40,50,60,70,80,90,100 ã®ãƒ—ルãƒ?‚¦ãƒ³
034 * 例ï¼?5,5,1 â†?-5,-4,-3,-2,-1,0,1,2,3,4,5 ã®ãƒ—ルãƒ?‚¦ãƒ³
035 * 例ï¼?,-5,-2 â†?5,3,1,-1,-3,-5 ã®ãƒ—ルãƒ?‚¦ãƒ³
036 *
037 * カラãƒ??表示ã«å¿?¦ãªå±žæ?ã¯, DBColumn オブジェクãƒ?よりå–り出ã—ã¾ã™ã?
038 * ã“ã?クラスã¯ã€DBColumn オブジェクト毎ã«?‘ã¤ä½œæ?ã•れã¾ã™ã?
039 *
040 * @og.rev 5.6.1.1 (2013/02/08) æ–°è¦ä½œæ?
041 * @og.group �?タ編�
042 *
043 * @version 4.0
044 * @author Kazuhiko Hasegawa
045 * @since JDK5.0,
046 */
047 public class Editor_NUMMENU extends Editor_MENU {
048 //* ã“ã?プãƒã‚°ãƒ©ãƒ??VERSIONæ–?—å?ã‚’è¨å®šã—ã¾ã™ã? {@value} */
049 private static final String VERSION = "5.6.1.1 (2013/02/08)" ;
050
051 /**
052 * ãƒ?ƒ•ォルトコンストラクターã€?
053 * ã“ã?コンストラクターã§ã€åŸºæœ¬ã‚ªãƒ–ジェクトを作æ?ã—ã¾ã™ã?
054 *
055 */
056 public Editor_NUMMENU() {
057 super();
058 }
059
060 /**
061 * コンストラクター�
062 * ã“ã“ã§ã¯ã€è¦ªã‚¯ãƒ©ã‚¹ã® Editor_MENU ã§åˆæœŸåŒ–を行ã„ã€ã‚»ãƒ¬ã‚¯ã‚·ãƒ§ãƒ³ã‚ªãƒ–ジェクãƒ?ã«ã€?
063 * Selection_NUM を使用ã™ã‚‹ã‚ˆã†ã«å†è¨å®šã—ã¾ã™ã?
064 *
065 * @param clm DBColumnオブジェク�
066 */
067 private Editor_NUMMENU( final DBColumn clm ) {
068 super( clm );
069
070 selection = new Selection_NUM( clm.getEditorParam() );
071 }
072
073 /**
074 * å?‚ªãƒ–ジェクトã‹ã‚‰è?åˆ??インスタンスを返ã—ã¾ã™ã?
075 * 自åˆ??身をã‚ャãƒ?‚·ãƒ¥ã™ã‚‹ã®ã‹ã?æ–°ãŸã«ä½œæ?ã™ã‚‹ã®ã‹ã?ã€å„サブクラスã®å®Ÿè£?«
076 * ã¾ã‹ã•れã¾ã™ã?
077 *
078 * @param clm DBColumnオブジェク�
079 *
080 * @return CellEditorオブジェク�
081 */
082 @Override
083 public CellEditor newInstance( final DBColumn clm ) {
084 return new Editor_NUMMENU( clm );
085 }
086 }