Project

General

Profile

1 49763 panagiotis
package eu.dnetlib.repo.manager.shared;
2 41602 stefania.m
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
5
/**
6
 * Created by stefania on 3/8/16.
7
 */
8
public class Triple<K, V, L> extends Tuple<K, V> implements IsSerializable {
9
10
    private L third;
11
12
    public Triple() {
13
    }
14
15
    public Triple(K first, V second, L third) {
16
        super(first, second);
17
        this.third = third;
18
    }
19
20
    public L getThird() {
21
        return third;
22
    }
23
24
    public void setThird(L third) {
25
        this.third = third;
26
    }
27
}