comparison src/alice/jungle/datasegment/HashSetDataSegment.java @ 52:61b2de3f7730

add HashSetDataSegment and HashLogUpdateCodeSegment. fix bugs
author one
date Sat, 13 Jul 2013 17:10:14 +0900
parents
children
comparison
equal deleted inserted replaced
51:9e782b4eb06e 52:61b2de3f7730
1 package alice.jungle.datasegment;
2
3 import java.util.HashSet;
4
5 import org.msgpack.annotation.Message;
6
7 @Message
8 public class HashSetDataSegment {
9 public HashSet<String> hash = new HashSet<String>();
10 public HashSetDataSegment() {}
11 }