view src/nabble/model/Person.java @ 62:4674ed7d56df default tip

remove n2
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 30 Sep 2023 20:25:29 -0600
parents 7ecd1a4ef557
children
line wrap: on
line source

package nabble.model;


public interface Person {
	public Site getSite();
	public String getName();
	public void setName(String name) throws ModelException;
	public String getNameHtml();
	public Node newChildNode(Node.Kind kind,String subject,String message,Message.Format msgFmt,Node parent) throws ModelException;
	public String getSearchId();
	public String getIdString();
	public NodeIterator<? extends Node> getNodesByDateDesc(String cnd);
	public int getNodeCount(String cnd);
	public int deleteNodes();  // returns count of node removed
	public Message getSignature();
}