annotate src/jungle/test/bbs/BoardMessage.java @ 58:4851344e120e

fix bug LogUpdateCodeSegment and ChildLogCheckCodeSegment
author one
date Mon, 15 Jul 2013 10:13:34 +0900
parents d8ee57a1c2c6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
1 package jungle.test.bbs;
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
2
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
3 public interface BoardMessage
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
4 {
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
5 public String getUUID();
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
6 public String getAuthor();
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
7 public String getMessage();
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
8 }