⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tablemodelcolumndata.java

📁 本程序是有IBM开发的一个基于数据表格的组件,里面有相关的例子和DOC,本站资料仅为大家学习之用
💻 JAVA
字号:


package com.ibm.j2x.swing.table;

/**
 * A Wrapper class used by the Castor XML parser to store table information
 * @author MAbernethy
 *
 */
public class TableModelColumnData
{
	private String name;
	private String field;
	
	/**
	 * Gets the name of the table column
	 * @return the column name
	 */
	public String getName()
	{
		return name;
	}

	/**
	 * Gets the field in the JavaBean of the table column
	 * @return the field name
	 */
	public String getField()
	{
		return field;
	}

	/**
	 * Sets the column name
	 * @param string the column name
	 */
	public void setName(String string)
	{
		name = string;
	}

	/**
	 * Sets the JavaBean field name of the columns
	 * @param string the field name
	 */
	public void setField(String string)
	{
		field = string;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -