?? part.java
字號:
//$Id: Part.java,v 1.1.2.1 2003/11/08 02:25:30 oneovthafew Exp $
package org.hibernate.test;
/**
* @author Gavin King
*/
public class Part {
private Long id;
private String description;
public String getDescription() {
return description;
}
public Long getId() {
return id;
}
public void setDescription(String string) {
description = string;
}
public void setId(Long long1) {
id = long1;
}
public static class SpecialPart extends Part {}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -