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

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

package com.ircclouds.irc.api.commands;


public class PartChanCmd implements ICommand
{
	private static final String PART_ID = "PART";

	private String channel;
	private String partMsg;

	public PartChanCmd(String aChannel, String aPartMsg)
	{
		channel = aChannel;
		partMsg = aPartMsg;
	}

	@Override
	public String asString()
	{
		return PART_ID + " " + channel + " :" + partMsg;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy