📄 userimpl.java
字号:
//$Id: $
package org.hibernate.test.annotations.interfaces;
import java.util.Collection;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToMany;
/**
* @author Emmanuel Bernard
*/
@Entity
public class UserImpl implements User {
private Collection<Contact> contacts;
private Integer id;
@Id
@GeneratedValue
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@OneToMany(targetEntity = ContactImpl.class)
public Collection<Contact> getContacts() {
return contacts;
}
public void setContacts(Collection<Contact> contacts) {
this.contacts = contacts;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -