tablerowbean.java

来自「ajax+struts最简单代码」· Java 代码 · 共 59 行

JAVA
59
字号
/*
 * Created on 2005-8-1
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.mstar.strutsajax.form;


/**
 * @author matianyi
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class TableRowBean{
	private String col1Value;
	private String col2Value;
	private String col3Value;
	

	/**
	 * @return Returns the col1Value.
	 */
	public String getCol1Value() {
		return col1Value;
	}
	/**
	 * @param col1Value The col1Value to set.
	 */
	public void setCol1Value(String col1Value) {
		this.col1Value = col1Value;
	}
	/**
	 * @return Returns the col2Value.
	 */
	public String getCol2Value() {
		return col2Value;
	}
	/**
	 * @param col2Value The col2Value to set.
	 */
	public void setCol2Value(String col2Value) {
		this.col2Value = col2Value;
	}
	/**
	 * @return Returns the col3Value.
	 */
	public String getCol3Value() {
		return col3Value;
	}
	/**
	 * @param col3Value The col3Value to set.
	 */
	public void setCol3Value(String col3Value) {
		this.col3Value = col3Value;
	}
}

⌨️ 快捷键说明

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