?? jay.java
字號:
//$Id: Jay.java 4599 2004-09-26 05:18:27Z oneovthafew $package org.hibernate.test.legacy;/** * @author Gavin King */public class Jay { private long id; private Eye eye; /** * @return Returns the eye. */ public Eye getEye() { return eye; } /** * @param eye The eye to set. */ public void setEye(Eye eye) { this.eye = eye; } /** * @return Returns the id. */ public long getId() { return id; } /** * @param id The id to set. */ public void setId(long id) { this.id = id; } public Jay() {} public Jay(Eye eye) { eye.getJays().add(this); this.eye = eye; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -