?? hive.java
字號(hào):
//$Id: Hive.java 5686 2005-02-12 07:27:32Z steveebersole $package org.hibernate.test.unionsubclass;import java.util.ArrayList;import java.util.List;/** * @author Gavin King */public class Hive { private long id; private Location location; private List members = new ArrayList(); public List getMembers() { return members; } public void setMembers(List hives) { this.members = hives; } public long getId() { return id; } public void setId(long id) { this.id = id; } public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -