parent.java
来自「hibernate-distribution-3.3.1.GA-dist.zip」· Java 代码 · 共 51 行
JAVA
51 行
//$Id: Parent.java 4378 2004-08-19 10:12:11Z oneovthafew $package org.hibernate.test.onetomany;import java.util.Collection;import java.util.HashSet;/** * @author gavin */public class Parent { private Long id; private String name; private Collection children = new HashSet(); /** * @return Returns the children. */ public Collection getChildren() { return children; } /** * @param children The children to set. */ public void setChildren(Collection children) { this.children = children; } /** * @return Returns the id. */ public Long getId() { return id; } /** * @param id The id to set. */ public void setId(Long id) { this.id = id; } /** * @return Returns the name. */ public String getName() { return name; } /** * @param name The name to set. */ public void setName(String name) { this.name = name; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?