comparison src/nabble/model/Person.java @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 package nabble.model;
2
3
4 public interface Person {
5 public Site getSite();
6 public String getName();
7 public void setName(String name) throws ModelException;
8 public String getNameHtml();
9 public Node newChildNode(Node.Kind kind,String subject,String message,Message.Format msgFmt,Node parent) throws ModelException;
10 public String getSearchId();
11 public String getIdString();
12 public NodeIterator<? extends Node> getNodesByDateDesc(String cnd);
13 public int getNodeCount(String cnd);
14 public int deleteNodes(); // returns count of node removed
15 public Message getSignature();
16 }