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

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

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

/**
 * 
 * @author didry
 * 
 */
public class ChangeTopicCmd implements ICommand
{
	private static final String TOPIC_KEY = "TOPIC";

	private String channel;
	private String topic;

	public ChangeTopicCmd(String aChannel, String aTopic)
	{
		channel = aChannel;
		topic = aTopic;
	}

	@Override
	public String asString()
	{
		return new StringBuffer().append(TOPIC_KEY).append(" ").append(channel).append(" :").append(topic).toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy