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.fukurou.util.TagBuffer; // 7.0.1.0 (2018/10/15) 022import org.opengion.fukurou.util.StringUtil; // 8.5.4.2 (2024/01/12) PMD 7.0.0 InefficientEmptyStringCheck 対応 023 024/** 025 * LABEL レンデラーは、カラムの値を#FFFFFFの色として表示する場合に 026 * 使用するクラスです。 027 * #FFFFFFのように#付き7桁のデータで設定して下さい。 028 * 029 * このクラスは、不変オブジェクトとして、共有されます。 030 * 031 * @og.group データ表示 032 * 033 * @og.rev 5.5.4.0 (2012/07/02) 新規作成 034 * @og.rev 5.6.3.1 (2013/04/05) input タグから、div へ全面変更 035 * 036 * @version 4.0 037 * @author Kazuhiko Hasegawa 038 * @since JDK5.0, 039 */ 040public class Renderer_COLOR extends AbstractRenderer { 041 /** このプログラムのVERSION文字列を設定します。 {@value} */ 042 private static final String VERSION = "7.0.1.0 (2018/10/15)" ; 043 044 private static final CellRenderer DB_CELL = new Renderer_COLOR() ; 045 046// private static final String DIV1 = "<div style=\"background-color:" ; 047// private static final String DIV2 = "; color:" ; 048// private static final String DIV3 = ";\">" ; 049// private static final String DIV4 = "</div>" ; 050 051 /** 7.0.1.0 (2018/10/15) divタグの作成に、TagBuffer利用。 */ 052 private static final String DIV = new TagBuffer( "div" ) 053 .add( "style" , "background-color:[V]; color:[V];" ) 054 .add( "title" , "[V]" ) 055 .addBody( "[V]" ) 056 .make().toString(); 057 058 /** 059 * デフォルトコンストラクター 060 * 061 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 062 */ 063 public Renderer_COLOR() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 064 065 /** 066 * 各オブジェクトから自分のインスタンスを返します。 067 * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に 068 * まかされます。 069 * 070 * @param clm DBColumnオブジェクト 071 * 072 * @return CellRendererオブジェクト 073 * @og.rtnNotNull 074 */ 075 public CellRenderer newInstance( final DBColumn clm ) { 076 return DB_CELL; 077 } 078 079 /** 080 * データの表示用文字列を返します。 081 * 082 * @og.rev 7.0.1.0 (2018/10/15) divタグの作成に、TagBuffer利用。 083 * 084 * @param value 入力値 085 * 086 * @return データの表示用文字列 087 * @og.rtnNotNull 088 */ 089 @Override 090 public String getValue( final String value ) { 091 // 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 092// return value == null || value.trim().isEmpty() ? "" : DIV1 + value + DIV2 + value + DIV3 + value + DIV4; 093 // 8.5.4.2 (2024/01/12) PMD 7.0.0 InefficientEmptyStringCheck 対応 094// return value == null || value.trim().isEmpty() ? "" : DIV.replace( "[V]",value ); 095 return StringUtil.isNull( value ) ? "" : DIV.replace( "[V]",value ); 096 } 097 098 /** 099 * データ出力用の文字列を作成します。 100 * ファイル等に出力する形式を想定しますので、HTMLタグを含まない 101 * データを返します。 102 * 基本は、#getValue( String ) をそのまま返します。 103 * 104 * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラー 105 * 106 * @param value 入力値 107 * 108 * @return データ出力用の文字列 109 * @og.rtnNotNull 110 * @see #getValue( String ) 111 */ 112 @Override 113 public String getWriteValue( final String value ) { 114 return value == null ? "" : value; 115 } 116}