Project

General

Profile

1 40261 antonis.le
package eu.dnetlib.goldoa.domain.stats;
2
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
5
/**
6
 * Created by antleb on 12/7/15.
7
 */
8
public class Quadruple<K, V, L, F> extends Triple<K, V, L> implements IsSerializable {
9 41123 stefania.m
10 40261 antonis.le
	private F fourth;
11
12
	public Quadruple() {
13
	}
14
15
	public Quadruple(K first, V second, L third, F fourth) {
16
		super(first, second, third);
17
		this.fourth = fourth;
18
	}
19
20
	public F getFourth() {
21
		return fourth;
22
	}
23
24
	public void setFourth(F fourth) {
25
		this.fourth = fourth;
26
	}
27
}