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

com.ircclouds.irc.api.domain.messages.interfaces.IMessage Maven / Gradle / Ivy

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

import java.io.*;

public interface IMessage extends Serializable
{
	IMessage NULL_MESSAGE = new IMessage()
	{
		@Override
		public ISource getSource()
		{
			return ISource.NULL_SOURCE;
		}		
	};
	
	ISource getSource();	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy