Project

General

Profile

1 57319 k.triantaf
package eu.dnetlib.uoaadmintools.entities.layoutEntities;
2
3
public class Panel {
4
5
    private Boolean onDarkBackground;
6
    private Background background;
7
    private Fonts fonts;
8
    private Fonts title;
9
    private PanelElements panelElements;
10
11
    public Panel() {
12
    }
13
14
    public Panel(Boolean onDarkBackground, Background background, Fonts fonts, Fonts title, PanelElements panelElements) {
15
        this.onDarkBackground = onDarkBackground;
16
        this.background = background;
17
        this.fonts = fonts;
18
        this.title = title;
19
        this.panelElements = panelElements;
20
    }
21
22
    public Boolean getOnDarkBackground() {
23
        return onDarkBackground;
24
    }
25
26
    public void setOnDarkBackground(Boolean onDarkBackground) {
27
        this.onDarkBackground = onDarkBackground;
28
    }
29
30
    public Background getBackground() {
31
        return background;
32
    }
33
34
    public void setBackground(Background background) {
35
        this.background = background;
36
    }
37
38
    public Fonts getFonts() {
39
        return fonts;
40
    }
41
42
    public void setFonts(Fonts fonts) {
43
        this.fonts = fonts;
44
    }
45
46
    public Fonts getTitle() {
47
        return title;
48
    }
49
50
    public void setTitle(Fonts title) {
51
        this.title = title;
52
    }
53
54
    public PanelElements getPanelElements() {
55
        return panelElements;
56
    }
57
58
    public void setPanelElements(PanelElements panelElements) {
59
        this.panelElements = panelElements;
60
    }
61
}