Project

General

Profile

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

    
3
public class PanelElements {
4

    
5
    private String backgroundColor;
6
    private String borderColor;
7
    private String color;
8

    
9
    public PanelElements() {
10
    }
11

    
12
    public PanelElements(String backgroundColor, String borderColor, String color) {
13
        this.backgroundColor = backgroundColor;
14
        this.borderColor = borderColor;
15
        this.color = color;
16
    }
17

    
18
    public String getBackgroundColor() {
19
        return backgroundColor;
20
    }
21

    
22
    public void setBackgroundColor(String backgroundColor) {
23
        this.backgroundColor = backgroundColor;
24
    }
25

    
26
    public String getBorderColor() {
27
        return borderColor;
28
    }
29

    
30
    public void setBorderColor(String borderColor) {
31
        this.borderColor = borderColor;
32
    }
33

    
34
    public String getColor() {
35
        return color;
36
    }
37

    
38
    public void setColor(String color) {
39
        this.color = color;
40
    }
41
}
(11-11/11)