📄 hive.java
字号:
//$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; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -