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.CellEditor;
019import org.opengion.hayabusa.db.DBColumn;
020import org.opengion.fukurou.util.StringUtil;
021
022/**
023 * HTMLAREA エディターは、カラムのデータをテキストエリアで編集し、
024 * HTML文字をエスケープして登録する場合に使用するクラスです。
025 *
026 * エスケープする以外はTEXTAREAと同様です
027 *
028 * @og.rev 5.5.8.0 (2012/11/01) 新規作成
029 * @og.rev 6.4.4.2 (2016/04/01) Editor_TEXTAREA を継承するように変更。
030 * @og.group データ編集
031 *
032 * @version  5.0
033 * @author   Takahashi Masakazu
034 * @since    JDK5.0,
035 */
036public class Editor_HTMLAREA extends Editor_TEXTAREA {
037        /** このプログラムのVERSION文字列を設定します。   {@value} */
038        private static final String VERSION = "6.4.4.2 (2016/04/01)" ;
039
040        // 6.4.4.2 (2016/04/01) Editor_TEXTAREA を継承するように変更。
041
042        /**
043         * デフォルトコンストラクター。
044         * このコンストラクターで、基本オブジェクトを作成します。
045         */
046        public Editor_HTMLAREA() { super(); }           // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
047
048        /**
049         * DBColumnオブジェクトを指定したprivateコンストラクター。
050         *
051         * @og.rev 6.4.4.2 (2016/04/01) Editor_TEXTAREA を継承するように変更。
052         *
053         * @param       clm     DBColumnオブジェクト
054         */
055        private Editor_HTMLAREA( final DBColumn clm ) {
056                super( clm );
057        }
058
059        /**
060         * 各オブジェクトから自分のインスタンスを返します。
061         * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に
062         * まかされます。
063         *
064         * @param       clm     DBColumnオブジェクト
065         *
066         * @return      CellEditorオブジェクト
067         * @og.rtnNotNull
068         */
069        @Override
070        public CellEditor newInstance( final DBColumn clm ) {
071                return new Editor_HTMLAREA( clm );
072        }
073
074        /**
075         * データの編集用文字列を返します。
076         *
077         * @og.rev 6.4.4.2 (2016/04/01) Editor_TEXTAREA を継承するように変更。
078         *
079         * @param   value 入力値
080         *
081         * @return  データの編集用文字列
082         * @og.rtnNotNull
083         */
084        @Override
085        public String getValue( final String value ) {
086                return super.getValue( StringUtil.htmlFilter(value) );
087        }
088
089        /**
090         * name属性を変えた、データ表示/編集用のHTML文字列を作成します。
091         * テーブル上の name に 行番号を付加して、名前_行番号 で登録するキーを作成し、
092         * リクエスト情報を1つ毎のフィールドで処理できます。
093         *
094         * @og.rev 3.1.0.0 (2003/03/20) 名前と行番号の区切り記号を "^" から "__" に変更。
095         * @og.rev 3.5.5.0 (2004/03/12) 名前と行番号の区切り記号("__")を、HybsSystem.JOINT_STRING  に変更。
096         * @og.rev 4.3.7.2 (2009/06/15) 属性でidが出力される場合は、idを出力しない
097         * @og.rev 5.1.2.0 (2010/01/01) 先頭の'_'による書き込み制御を行わない。(他のクラスとの実装の共通化)
098         * @og.rev 5.1.7.0 (2010/06/01) 動的プルダウン実装見直し
099         * @og.rev 6.4.4.2 (2016/04/01) Editor_TEXTAREA を継承するように変更。
100         *
101         * @param   row   行番号
102         * @param   value 入力値
103         *
104         * @return  データ表示/編集用の文字列
105         * @og.rtnNotNull
106         */
107        @Override
108        public String getValue( final int row,final String value ) {
109                return super.getValue( row , StringUtil.htmlFilter(value) );
110        }
111}