comparison src/main/java/alice/datasegment/DataSegmentValue.java @ 345:8f71c3e6f11d

Change directory structure Maven standard
author sugi
date Wed, 16 Apr 2014 18:26:07 +0900
parents
children
comparison
equal deleted inserted replaced
344:9f97ec18f8c5 345:8f71c3e6f11d
1 package alice.datasegment;
2
3 import org.msgpack.type.Value;
4
5 public class DataSegmentValue {
6
7 public int index;
8 public Value val;
9 public String from;
10 public Object obj;
11
12 public DataSegmentValue(int index, Value val, Object obj,String reverseKey) {
13 this.index = index;
14 this.val = val;
15 this.from = reverseKey;
16 this.obj = obj;
17 }
18
19 public DataSegmentValue(int index, Value val,String reverseKey) {
20 this.index = index;
21 this.val = val;
22 this.from = reverseKey;
23 }
24
25 }