⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userarticleio.java

📁 NTsky新闻发布v1.0(提供JavaBean)
💻 JAVA
字号:
/**
********************************
*   NTsky新闻发布系统V 1.0     *
*   功能:添加文章(基本输入和输出)
*   代码编写:姚君林
*   编写日期:2003/4/5
*	代码修改:
*   修改日期:			
*******************************
*/
package ntsky.news;
public class UserArticleIO{
	public int column;
	public int kind;
	public String title = null;
	public String content = null;
	public String articlefrom = null;

	//栏目
	public void setColumn(int column){
		this.column = column;
	}
	public int getColumn(){
		return this.column;
	}
	//类别
	public void setKind(int kind){
		this.kind = kind;
	}
	public int getKind(){
		return this.kind;
	}
	//标题
	public void setTitle(String title){
		this.title = title;
	}
	public String getTitle(){
		return this.title;
	}
	//文章内容
	public void setContent(String content){
		this.content = content;
	}
	public String getContent(){
		return this.content;
	}
	//出处
	public void setArticlefrom(String articlefrom){
		this.articlefrom = articlefrom;
	}
	public String getArticlefrom(){
		if(articlefrom == null){
			articlefrom = "";
			return articlefrom;
		}
		return this.articlefrom;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -