All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ircclouds.irc.api.commands.ChangeModeCmd Maven / Gradle / Ivy

There is a newer version: 1.0-0014
Show newest version
package com.ircclouds.irc.api.commands;

public class ChangeModeCmd implements ICommand
{
	private String changeModesStr;
	
	public ChangeModeCmd(String aModeStr)
	{
		changeModesStr = aModeStr;
	}
	
	@Override
	public String asString()
	{
		return "mode " + changeModesStr;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy