annotate src/treecms/api/NodeID.java @ 0:7ecb9273581d

hg init
author shoshi
date Wed, 16 Feb 2011 14:27:35 +0900
parents
children bdde898e8ef9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7ecb9273581d hg init
shoshi
parents:
diff changeset
1 package treecms.api;
7ecb9273581d hg init
shoshi
parents:
diff changeset
2
7ecb9273581d hg init
shoshi
parents:
diff changeset
3 public interface NodeID
7ecb9273581d hg init
shoshi
parents:
diff changeset
4 {
7ecb9273581d hg init
shoshi
parents:
diff changeset
5 public NodeID create();
7ecb9273581d hg init
shoshi
parents:
diff changeset
6 public NodeID update();
7ecb9273581d hg init
shoshi
parents:
diff changeset
7 public String getUUID();
7ecb9273581d hg init
shoshi
parents:
diff changeset
8 public String getVersion();
7ecb9273581d hg init
shoshi
parents:
diff changeset
9 public String toString();
7ecb9273581d hg init
shoshi
parents:
diff changeset
10
7ecb9273581d hg init
shoshi
parents:
diff changeset
11 public boolean isFamily(NodeID _id);
7ecb9273581d hg init
shoshi
parents:
diff changeset
12 public boolean equals(NodeID _id);
7ecb9273581d hg init
shoshi
parents:
diff changeset
13 }