Project

General

Profile

1
package eu.dnetlib.repo.manager.domain;
2

    
3

    
4

    
5
/**
6
 * Created by stefania on 3/8/16.
7
 */
8
public class Triple<K, V, L> extends Tuple<K, V>   {
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
}
(25-25/32)