?? jay.java
字號:
//$Id: Jay.java,v 1.1.2.1 2004/01/19 18:00:32 oneovthafew Exp $
package org.hibernate.test;
/**
* @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(eye);
this.eye = eye;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -