Project

General

Profile

« Previous | Next » 

Revision 52891

Added by Tsampikos Livisianos over 5 years ago

add empty constructors

View differences:

Instance.java
6 6
 * Created by tsampikos on 31/10/2016.
7 7
 */
8 8
public class Instance {
9
    private final String metricType;
10
    private final String count;
9
    private String metricType;
10
    private String count;
11 11

  
12
    public Instance() {
13
    }
14

  
12 15
    public Instance(String type, String count) {
13 16
        this.metricType = type;
14 17
        this.count = count;

Also available in: Unified diff