Project

General

Profile

1 45968 panagiotis
package eu.dnetlib.goldoa.domain.stats;
2
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
5
/**
6
 * Created by stefania on 11/20/15.
7
 */
8
public class Triple<K, V, L> extends Tuple<K, V> implements IsSerializable {
9
    private L third;
10
11
    public Triple() {
12
    }
13
14
    public Triple(K first, V second, L third) {
15
        super(first, second);
16
        this.third = third;
17
    }
18
19
    public L getThird() {
20
        return third;
21
    }
22
}