panda.net.nntp.Threadable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-nets Show documentation
Show all versions of panda-nets Show documentation
Panda Nets is a client side library of many basic Internet protocols.
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