view src/main/java/alice/datasegment/DataSegmentValue.java @ 503:79d5b317b2b6 dispose

remove unused method
author sugi
date Thu, 18 Dec 2014 17:28:45 +0900
parents 6e304a7a60e7
children
line wrap: on
line source

package alice.datasegment;

public class DataSegmentValue {

    public int index;
    public ReceiveData rData;
    public String from;

    public DataSegmentValue(int index, ReceiveData rData, String reverseKey) {
        this.index = index;
        this.rData = rData;
        this.from = reverseKey;
    }

}