jay.java
来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 46 行
JAVA
46 行
//$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 + =
减小字号Ctrl + -
显示快捷键?