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

com.ircclouds.irc.api.domain.ChannelModeC Maven / Gradle / Ivy

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

public class ChannelModeC extends ChannelMode
{
	private String param;
	
	public ChannelModeC(Character aType)
	{
		this(aType, "");
	}
	
	public ChannelModeC(Character aType, String aParam)
	{
		super(aType);
		
		param = aParam;
	}
	
	public String getParam()
	{
		return param;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy