Project

General

Profile

« Previous | Next » 

Revision 53187

Added by Tsampikos Livisianos over 5 years ago

add other research products

View differences:

Community.java
8 8
    private StatsByAccessMode publication;
9 9
    private StatsByAccessMode dataset;
10 10
    private StatsByAccessMode software;
11
    private StatsByAccessMode other;
11 12

  
12 13
    private int total_projects = 0;
13 14
    private int virtual_organizations = 0;
......
15 16
    public Community() {
16 17
    }
17 18

  
18
    public Community(StatsByAccessMode publication, StatsByAccessMode datasets, StatsByAccessMode software, int total_projects, int virtual_organizations) {
19
    public Community(StatsByAccessMode publication, StatsByAccessMode datasets, StatsByAccessMode software, StatsByAccessMode others, int total_projects, int virtual_organizations) {
19 20
        this.publication = publication;
20 21
        this.dataset = datasets;
21 22
        this.software = software;
23
        this.other = others;
22 24
        this.total_projects = total_projects;
23 25
        this.virtual_organizations = virtual_organizations;
24 26
    }
......
47 49
        this.software = software;
48 50
    }
49 51

  
52
    public StatsByAccessMode getOther() {
53
        return other;
54
    }
55

  
56
    public void setOther(StatsByAccessMode other) {
57
        this.other = other;
58
    }
59

  
50 60
    public int getTotal_projects() {
51 61
        return total_projects;
52 62
    }

Also available in: Unified diff