Project

General

Profile

Download (816 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2021 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.common;
10

    
11
/**
12
 * @author a.mueller
13
 * @since 18.02.2021
14
 */
15
public class TripleResult<S extends Object, T extends Object, U extends Object>
16
        extends DoubleResult<S,T> {
17

    
18
    private U thirdResult;
19

    
20
    public TripleResult(S firstResult, T secondResult, U thirdResult) {
21
        super(firstResult, secondResult);
22
        this.thirdResult = thirdResult;
23
    }
24

    
25
    public U getThirdResult() {
26
        return thirdResult;
27
    }
28

    
29
    public void setThirdResult(U thirdResult) {
30
        this.thirdResult = thirdResult;
31
    }
32

    
33
}
(20-20/25)