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
024 // import org.opengion.hayabusa.db.Selection_NUM; // 5.7.3.0 (2014/02/07) SelectionFactory を使ã�?§˜に変更
025 import org.opengion.hayabusa.db.SelectionFactory; // 5.7.3.0 (2014/02/07)
026
027 /**
028 * カラãƒ??編é›?ƒ‘ラメーターの開始ã?終äº??スãƒ?ƒƒプã?æƒ??より、ã?ルãƒ?‚¦ンメニューを作æ?して
029 * 編é›?�™るå?合に使用するエãƒ?‚£タークラスですã?
030 *
031 * ここでは、数字(é?番?‰ã?自動生成を行いますã?パラメータでã€?–‹始ã?終äº??スãƒ?ƒƒプをæŒ?®šしますã?
032 * パラメータの初期値はã€?–‹å§?1)、終äº?10)、スãƒ?ƒƒãƒ?1) ですã?
033 *
034 * 例ï¼?,10,1 â†?1,2,3,4,5,6,7,8,9,10 のプルãƒ?‚¦ン
035 * 例ï¼?0,100,10 â†?10,20,30,40,50,60,70,80,90,100 のプルãƒ?‚¦ン
036 * 例ï¼?5,5,1 â†?-5,-4,-3,-2,-1,0,1,2,3,4,5 のプルãƒ?‚¦ン
037 * 例ï¼?,-5,-2 â†?5,3,1,-1,-3,-5 のプルãƒ?‚¦ン
038 *
039 * カラãƒ??表示にå¿?¦�な属æ?は, DBColumn オブジェクãƒ?より取り出しますã?
040 * こã?クラスは、DBColumn オブジェクト毎に?‘つ作æ?されますã?
041 *
042 * @og.rev 5.6.1.1 (2013/02/08) 新規作æ?
043 * @og.group ãƒ??タ編é›?
044 *
045 * @version 4.0
046 * @author Kazuhiko Hasegawa
047 * @since JDK5.0,
048 */
049 public class Editor_NUMMENU extends Editor_MENU {
050 //* こã?プログラãƒ??VERSIONæ–?—å?を設定しますã? {@value} */
051 private static final String VERSION = "5.7.3.0 (2014/02/07)" ;
052
053 /**
054 * ãƒ?ƒ•ォルトコンストラクターã€?
055 * こã?コンストラクターで、基本オブジェクトを作æ?しますã?
056 *
057 */
058 public Editor_NUMMENU() {
059 super();
060 }
061
062 /**
063 * コンストラクターã€?
064 * ここでは、親クラスの Editor_MENU で初期化を行い、セレクションオブジェクãƒ?にã€?
065 * Selection_NUM を使用するように再設定しますã?
066 *
067 * @og.rev 5.7.3.0 (2014/02/07) SelectionFactory 対å¿?
068 *
069 * @param clm DBColumnオブジェクãƒ?
070 */
071 private Editor_NUMMENU( final DBColumn clm ) {
072 super( clm );
073
074 // 5.7.3.0 (2014/02/07) SelectionFactory 対å¿?
075 // selection = new Selection_NUM( clm.getEditorParam() );
076 selection = SelectionFactory.newSelection( "NUM", clm.getEditorParam() );
077 }
078
079 /**
080 * å�?‚ªブジェクトからè?åˆ??インスタンスを返しますã?
081 * 自åˆ??身をキャãƒ?‚·ュするのかã?新たに作æ?するのかã?、各サブクラスの実è£?�«
082 * まかされますã?
083 *
084 * @param clm DBColumnオブジェクãƒ?
085 *
086 * @return CellEditorオブジェクãƒ?
087 */
088 @Override
089 public CellEditor newInstance( final DBColumn clm ) {
090 return new Editor_NUMMENU( clm );
091 }
092 }