Java企业级开发项目实践,这是他的附光盘
源代码在线查看: ad.java
//---------------------------------------------------------
// Application: Portal of Enterprice
// Author : eSingle
// File : Ad.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 Ad {
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;
}
}