Java企业级开发项目实践,这是他的附光盘

源代码在线查看: news.java

软件大小: 38595 K
上传用户: quzhengjie
关键词: Java 企业级 项目 实践
下载地址: 免注册下载 普通下载 VIP

相关代码

				//---------------------------------------------------------
				// Application: Portal of Enterprice
				// Author     : eSingle
				// File       : News.java
				//
				// Copyright 2002 LandSoft Corp.
				// Generated at Mon Nov 18 20:04:55 CST 2002
				// Created by caoguangxin
				// mailto:gxcao@mail.tsinghua.edu.cn
				//---------------------------------------------------------
				
				package com.landsoft.portal.model;
				
				public class News {
				  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;
				  }
				}
							

相关资源