📄 productline.java
字号:
//$Id: ProductLine.java 4460 2004-08-29 12:04:14Z oneovthafew $package org.hibernate.test.batchfetch;import java.util.HashSet;import java.util.Set;/** * @author Gavin King */public class ProductLine { private String id; private String description; private Set models = new HashSet(); public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getId() { return id; } public void setId(String id) { this.id = id; } public Set getModels() { return models; } public void setModels(Set models) { this.models = models; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -