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 018/** 019 * DBType_KX は、全角/半角混在のChar または Varchar2 属性に対応するクラスで 020 * 一般的な制限のない文字列カラム属性を定義します。 021 * 022 * DBType_XK との違いは、デフォルトで IME(仮名漢字変換)を ON にします。 023 * 024 * @og.rev 3.5.4.6 (2004/01/30) 新規作成 025 * 026 * @version 0.9.0 2000/10/17 027 * @author Kazuhiko Hasegawa 028 * @since JDK1.1, 029 */ 030public class DBType_KX extends DBType_XK { 031 /** このプログラムのVERSION文字列を設定します。 {@value} */ 032 private static final String VERSION = "6.4.2.0 (2016/01/29)" ; 033 034 /** 035 * デフォルトコンストラクター 036 * 037 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 038 */ 039 public DBType_KX() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 040}