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

panda.net.nntp.Threadable Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package panda.net.nntp;

/**
 * A placeholder interface for threadable message objects Author: Rory Winston
 * ([email protected])
 */
public interface Threadable {
	public boolean isDummy();

	public String messageThreadId();

	public String[] messageThreadReferences();

	public String simplifiedSubject();

	public boolean subjectIsReply();

	public void setChild(Threadable child);

	public void setNext(Threadable next);

	public Threadable makeDummy();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy