📄 documentimpl.java
字号:
//$Id: DocumentImpl.java,v 1.1 2004/08/22 01:20:07 oneovthafew Exp $
package org.hibernate.test.interfaceproxy;
import java.sql.Blob;
import java.util.Calendar;
/**
* @author Gavin King
*/
public class DocumentImpl extends ItemImpl implements Document {
private Blob content;
private Calendar modified;
private Calendar created;
/**
* @return Returns the created.
*/
public Calendar getCreated() {
return created;
}
/**
* @param created The created to set.
*/
public void setCreated(Calendar created) {
this.created = created;
}
/**
* @return Returns the modified.
*/
public Calendar getModified() {
return modified;
}
/**
* @param modified The modified to set.
*/
public void setModified(Calendar modified) {
this.modified = modified;
}
/**
* @return Returns the content.
*/
public Blob getContent() {
return content;
}
/**
* @param content The content to set.
*/
public void setContent(Blob content) {
this.content = content;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -