📄 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 + -