b.java

来自「jsp 编写的人力资源管理系统」· Java 代码 · 共 41 行

JAVA
41
字号
package org.hibernate.test;import java.util.Map;public class B extends A {	private int count;	private Map map;		/**	 * Returns the count.	 * @return int	 */	public int getCount() {		return count;	}		/**	 * Sets the count.	 * @param count The count to set	 */	public void setCount(int count) {		this.count = count;	}		public Map getMap() {		return map;	}	public void setMap(Map map) {		this.map = map;	}}

⌨️ 快捷键说明

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