Project

General

Profile

1
package eu.dnetlib.uoaadmintools.entities.layoutEntities;
2

    
3
public class Link {
4

    
5
    private String family;
6
    private Integer size;
7
    private Integer weight;
8
    private String color;
9
    private OnHoverLink onHover;
10

    
11
    public Link() {
12
    }
13

    
14
    public Link(String family, Integer size, Integer weight, String color, OnHoverLink onHover) {
15
        this.family = family;
16
        this.size = size;
17
        this.weight = weight;
18
        this.color = color;
19
        this.onHover = onHover;
20
    }
21

    
22
    public String getFamily() {
23
        return family;
24
    }
25

    
26
    public void setFamily(String family) {
27
        this.family = family;
28
    }
29

    
30
    public Integer getSize() {
31
        return size;
32
    }
33

    
34
    public void setSize(Integer size) {
35
        this.size = size;
36
    }
37

    
38
    public Integer getWeight() {
39
        return weight;
40
    }
41

    
42
    public void setWeight(Integer weight) {
43
        this.weight = weight;
44
    }
45

    
46
    public String getColor() {
47
        return color;
48
    }
49

    
50
    public void setColor(String color) {
51
        this.color = color;
52
    }
53

    
54
    public OnHoverLink getOnHover() {
55
        return onHover;
56
    }
57

    
58
    public void setOnHover(OnHoverLink onHover) {
59
        this.onHover = onHover;
60
    }
61
}
(6-6/11)