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 */ 016package org.opengion.plugin.column; 017 018import org.opengion.hayabusa.db.AbstractRenderer; 019import org.opengion.hayabusa.db.CellRenderer; 020import org.opengion.hayabusa.db.DBColumn; 021import org.opengion.hayabusa.db.Selection; 022import org.opengion.hayabusa.db.SelectionFactory; // 5.7.3.0 (2014/02/07) 023 024/** 025 * RADIO レンデラーは、カラムのデータをコードリソースに対応したラジオボタンの 026 * 代替えラベルで表示する場合に使用するクラスです。 027 * 028 * カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。 029 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。 030 * 031 * @og.rev 3.5.1.0 (2003/10/03) 新規作成 032 * @og.group データ表示 033 * 034 * @version 4.0 035 * @author Kazuhiko Hasegawa 036 * @since JDK5.0, 037 */ 038public class Renderer_RADIO extends AbstractRenderer { 039 /** このプログラムのVERSION文字列を設定します。 {@value} */ 040 private static final String VERSION = "6.2.2.4 (2015/04/24)" ; 041 042 private final Selection selection ; 043 private String errMsg ; // 6.0.4.0 (2014/11/28) 044 045 /** 046 * デフォルトコンストラクター。 047 * このコンストラクターで、基本オブジェクトを作成します。 048 * 049 */ 050 public Renderer_RADIO() { 051 super(); // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor 052 selection = null; 053 } 054 055 /** 056 * DBColumnオブジェクトを指定したprivateコンストラクター。 057 * 058 * @og.rev 3.5.4.2 (2003/12/15) makeCodeSelection メソッドを CodeSelectionクラスに変更。 059 * @og.rev 3.5.5.7 (2004/05/10) SelectionFactory を使用して、オブジェクト作成 060 * @og.rev 4.0.0.0 (2005/01/31) SelectionFactory ではなく、直接 Selection_RADIO を作成。 061 * @og.rev 5.7.3.0 (2014/02/07) SelectionFactory 対応 062 * @og.rev 6.0.4.0 (2014/11/28) selection が null の場合、警告表示します。 063 * @og.rev 6.2.0.0 (2015/02/27) キー:ラベル形式で表示するかどうかを、指定できるようにします。 064 * 065 * @param clm DBColumnオブジェクト 066 */ 067 private Renderer_RADIO( final DBColumn clm ) { 068 super(); // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor 069 final String addKeyLabel = clm.getAddKeyLabel(); // 6.2.0.0 (2015/02/27) キー:ラベル形式 070 071 // 5.7.3.0 (2014/02/07) SelectionFactory 対応 072 selection = SelectionFactory.newSelection( "RADIO" , clm.getCodeData(), addKeyLabel ); // 6.2.0.0 (2015/02/27) 073 074 // 6.0.4.0 (2014/11/28) selection が null の場合、Selection_NULL を作成します。 075 if( selection == null ) { 076 errMsg = "codeData が未設定です。" 077 + " name=" + clm.getName() 078 + " label=" + clm.getLabel() 079 + " rendType=" + clm.getRenderer() ; 080 System.out.println( errMsg ); 081 } 082 } 083 084 /** 085 * 各オブジェクトから自分のインスタンスを返します。 086 * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に 087 * まかされます。 088 * 089 * @param clm DBColumnオブジェクト 090 * 091 * @return CellRendererオブジェクト 092 * @og.rtnNotNull 093 */ 094 public CellRenderer newInstance( final DBColumn clm ) { 095 return new Renderer_RADIO( clm ); 096 } 097 098 /** 099 * データの表示用文字列を返します。 100 * 101 * @og.rev 6.0.4.0 (2014/11/28) selection が null の場合、警告表示します。 102 * @og.rev 6.2.2.4 (2015/04/24) getRadioLabel廃止。getValueLabel を使用する。 103 * 104 * @param value 入力値 105 * 106 * @return データの表示用文字列 107 * @og.rtnNotNull 108 */ 109 @Override 110 public String getValue( final String value ) { 111 // 6.4.1.1 (2016/01/16) PMD refactoring. A method should have only one exit point, and that should be the last statement in the method 112 return selection == null 113 ? ("<span class=\"error\">" + errMsg + " value=" + value + "</span>") 114 : ("<pre class=\"RADIO\">" + selection.getValueLabel( value ) + "</pre>") ; 115 } 116 117 /** 118 * データ出力用の文字列を作成します。 119 * ファイル等に出力する形式を想定しますので、HTMLタグを含まない 120 * データを返します。 121 * 基本は、#getValue( String ) をそのまま返します。 122 * 123 * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラー 124 * @og.rev 6.2.2.4 (2015/04/24) getRadioLabel廃止。getValueLabel を使用する。 125 * 126 * @param value 入力値 127 * 128 * @return データ出力用の文字列 129 * @see #getValue( String ) 130 */ 131 @Override 132 public String getWriteValue( final String value ) { 133 // 6.4.1.1 (2016/01/16) PMD refactoring. A method should have only one exit point, and that should be the last statement in the method 134 return selection == null ? value : selection.getValueLabel( value ); 135 } 136}