basicbean.java
来自「这是Java学习的一些常用的例子」· Java 代码 · 共 46 行
JAVA
46 行
/*
* Created on Jul 11, 2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package ar.com.koalas.providers;
/**
* @author dz156h
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class BasicBean {
private String key;
private String value;
private String tipo;
public String getKey() {
return key;
}
public String getValue() {
return value;
}
public void setKey(String string) {
key = string;
}
public void setValue(String string) {
value = string;
}
public String getTipo() {
return tipo;
}
public void setTipo(String string) {
tipo = string;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?