/*
|
* 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 Line extends Component{
|
|
private float lineWidth = 2.5f;
|
|
private String lineStyle = "Solid";
|
|
private String foreColor = "#000000";
|
|
public float getLineWidth() {
|
return lineWidth;
|
}
|
|
public void setLineWidth(float lineWidth) {
|
this.lineWidth = lineWidth;
|
}
|
|
public String getLineStyle() {
|
return lineStyle;
|
}
|
|
public void setLineStyle(String lineStyle) {
|
this.lineStyle = lineStyle;
|
}
|
|
public String getForeColor() {
|
return foreColor;
|
}
|
|
public void setForeColor(String foreColor) {
|
this.foreColor = foreColor;
|
}
|
}
|