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

com.ircclouds.irc.api.domain.messages.AbstractNotice Maven / Gradle / Ivy

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

import com.ircclouds.irc.api.domain.messages.interfaces.*;

public abstract class AbstractNotice implements IHasText
{
	private String text;

	public AbstractNotice(String aText)
	{
		text = aText;
	}
	
	public String getText()
	{
		return text;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy