notify.java
来自「Java企业级开发项目实践,这是他的附光盘」· Java 代码 · 共 39 行
JAVA
39 行
//---------------------------------------------------------
// Application: Portal of Enterprice
// Author : eSingle
// File : notify.java
//
// Copyright 2002 LandSoft Corp.
// Generated at Thu Nov 14 11:43:32 CST 2002
// Created by caoguangxin
// mailto:gxcao@mail.tsinghua.edu.cn
//---------------------------------------------------------
package com.landsoft.portal.managent.model;
public class notify {
private String content;
private String author;
private String title;
public String getContent() {
return content;
}
public String getAuthor() {
return author;
}
public String getTitle() {
return title;
}
public void setContent(String content) {
this.content = content;
}
public void setAuthor(String author) {
this.author = author;
}
public void setTitle(String title) {
this.title = title;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?