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

📄 stdconfig.java

📁 this is a sample of a java bot. use to educate..
💻 JAVA
字号:
class STDConfig {

	private String server;
	private int port;
	private String channel;
	private String channelPassword;
	private String nickPrefix;
	private String password;

	public void setServer(String server) {
		this.server = server;
	}

	public void setPort(int port) {
		this.port = port;
	}

	public void setChannel(String channel) {
		this.channel = channel;
	}

	public void setChannelPassword(String channelPassword) {
		this.channelPassword = channelPassword;
	}

	public void setNickPrefix(String nickPrefix) {
		this.nickPrefix = nickPrefix;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getPassword() {
		return this.password;
	}

	public String getServer() {
		return this.server;
	}

	public int getPort() {
		return this.port;
	}

	public String getChannel() {
		return this.channel;
	}
	public String getChannelPassword() {
		return this.channelPassword;
	}

	public String getNickPrefix() {
		return this.nickPrefix;
	}

}

⌨️ 快捷键说明

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