Kenmegne
6 days ago 6494941037ae2670876de9940853d50538eb5129
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.megatim.reporting.adhoc.pojo.components;
 
import com.megatim.dynamic.reports.pojo.DisplayCondition;
 
/**
 *
 * @author ASUS
 */
public class Component {
 
    protected int x;
 
    protected int y;
 
    protected int width = 200;
 
    protected int height = 1;
 
    protected String hAlign = "Center";
 
    protected String vAlign = "Middle";
 
    protected Border border = new Border();
 
    protected String stretchType;
 
    protected DisplayCondition displayCondition = new DisplayCondition();
 
    public int getX() {
        return x;
    }
 
    public void setX(int x) {
        this.x = x;
    }
 
    public int getY() {
        return y;
    }
 
    public void setY(int y) {
        this.y = y;
    }
 
    public int getWidth() {
        return width;
    }
 
    public void setWidth(int width) {
        this.width = width;
    }
 
    public int getHeight() {
        return height;
    }
 
    public void setHeight(int height) {
        this.height = height;
    }
 
    public String gethAlign() {
        return hAlign;
    }
 
    public void sethAlign(String hAlign) {
        this.hAlign = hAlign;
    }
 
    public String getvAlign() {
        return vAlign;
    }
 
    public void setvAlign(String vAlign) {
        this.vAlign = vAlign;
    }
 
    public Border getBorder() {
        return border;
    }
 
    public void setBorder(Border border) {
        this.border = border;
    }
 
    public String getStretchType() {
        return stretchType;
    }
 
    public void setStretchType(String stretchType) {
        this.stretchType = stretchType;
    }
 
    public DisplayCondition getDisplayCondition() {
        return displayCondition;
    }
 
    public void setDisplayCondition(DisplayCondition displayCondition) {
        this.displayCondition = displayCondition;
    }
}