s.java

来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 43 行

JAVA
43
字号
//$Id: S.java 4599 2004-09-26 05:18:27Z oneovthafew $package org.hibernate.test.legacy;public class S {	private String address;	private int count;	public S(int countArg, String addressArg) {		count = countArg;		address = addressArg;	}		/**	 * Gets the address	 * @return Returns a String	 */	public String getAddress() {		return address;	}	/**	 * Sets the address	 * @param address The address to set	 */	public void setAddress(String address) {		this.address = address;	}	/**	 * Gets the count	 * @return Returns a int	 */	public int getCount() {		return count;	}	/**	 * Sets the count	 * @param count The count to set	 */	public void setCount(int count) {		this.count = count;	}}

⌨️ 快捷键说明

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