/*
|
* 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;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class Border {
|
|
private float leftBorder;
|
|
private float bottomBorder;
|
|
private float topBorder;
|
|
private float rightBorder;
|
|
private String lineColor = "#000000";
|
|
private String lineStyle = "Solid";
|
|
protected int leftPadding;
|
|
protected int rightPadding;
|
|
protected int topPadding;
|
|
protected int bottomPadding;
|
|
public float getLeftBorder() {
|
return leftBorder;
|
}
|
|
public void setLeftBorder(float leftBorder) {
|
this.leftBorder = leftBorder;
|
}
|
|
public float getBottomBorder() {
|
return bottomBorder;
|
}
|
|
public void setBottomBorder(float bottomBorder) {
|
this.bottomBorder = bottomBorder;
|
}
|
|
public float getTopBorder() {
|
return topBorder;
|
}
|
|
public void setTopBorder(float topBorder) {
|
this.topBorder = topBorder;
|
}
|
|
public float getRightBorder() {
|
return rightBorder;
|
}
|
|
public void setRightBorder(float rightBorder) {
|
this.rightBorder = rightBorder;
|
}
|
|
public String getLineColor() {
|
return lineColor;
|
}
|
|
public void setLineColor(String lineColor) {
|
this.lineColor = lineColor;
|
}
|
|
public String getLineStyle() {
|
return lineStyle;
|
}
|
|
public void setLineStyle(String lineStyle) {
|
this.lineStyle = lineStyle;
|
}
|
|
public int getLeftPadding() {
|
return leftPadding;
|
}
|
|
public void setLeftPadding(int leftPadding) {
|
this.leftPadding = leftPadding;
|
}
|
|
public int getRightPadding() {
|
return rightPadding;
|
}
|
|
public void setRightPadding(int rightPadding) {
|
this.rightPadding = rightPadding;
|
}
|
|
public int getTopPadding() {
|
return topPadding;
|
}
|
|
public void setTopPadding(int topPadding) {
|
this.topPadding = topPadding;
|
}
|
|
public int getBottomPadding() {
|
return bottomPadding;
|
}
|
|
public void setBottomPadding(int bottomPadding) {
|
this.bottomPadding = bottomPadding;
|
}
|
}
|