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

📄 wkfolderdata.java

📁 一个日本流行的,功能较全的开源Web办公管理(Groupware)系统。
💻 JAVA
字号:
package jp.co.sjts.gsession.work;

/*
 * work 偺  WKFolderData.java
 * Copyright (C) 1999-2000 Japan Total System Co,LTD
 *	  Masakatu O	<ookubo@sjts.co.jp>
 */

import java.util.Iterator;

public class WKFolderData
{
	private String		id;			// 宱楬俬俢
	private String		name;		// 宱楬柤
	private String		memo;		// 
	private String		count;		// 

	public String GetId() { return id; }
	public int GetIntId() { return Integer.parseInt(id); }
	public String GetName() { return name; }
	public String GetMemo() { return memo; }
	public String GetCount() { return count; }
	public int GetIntCount() { return Integer.parseInt(count); }

	public void SetId(String id) { this.id = id; }
	public void SetName(String name) { this.name = name; }
	public void SetMemo(String memo) { this.memo = memo; }
	public void SetCount(String count) { this.count = count; }
	public void SetCount(int count) { this.count = Integer.toString(count); }

	public WKFolderData(String id, String name ,String memo ,String count)
	{
		this.id = id;
		this.name = name;
		this.memo = memo;
		this.count = count;
	}

	public String toString()
	{
		return id + "," + name + "," + memo + "," + count ;
	}


}

⌨️ 快捷键说明

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