📄 tablerowbean.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -