/*
|
* 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 Paragraph {
|
|
private int leftIndent;
|
|
private int rightIndent;
|
|
private int spacingBefore;
|
|
private int spacingAfter;
|
|
private int firstLineIndent;
|
|
private String lineSpacing;
|
|
private double lineSpacingSize;
|
|
public int getLeftIndent() {
|
return leftIndent;
|
}
|
|
public void setLeftIndent(int leftIndent) {
|
this.leftIndent = leftIndent;
|
}
|
|
public int getRightIndent() {
|
return rightIndent;
|
}
|
|
public void setRightIndent(int rightIndent) {
|
this.rightIndent = rightIndent;
|
}
|
|
public int getSpacingBefore() {
|
return spacingBefore;
|
}
|
|
public void setSpacingBefore(int spacingBefore) {
|
this.spacingBefore = spacingBefore;
|
}
|
|
public int getSpacingAfter() {
|
return spacingAfter;
|
}
|
|
public void setSpacingAfter(int spacingAfter) {
|
this.spacingAfter = spacingAfter;
|
}
|
|
public int getFirstLineIndent() {
|
return firstLineIndent;
|
}
|
|
public void setFirstLineIndent(int firstLineIndent) {
|
this.firstLineIndent = firstLineIndent;
|
}
|
|
public String getLineSpacing() {
|
return lineSpacing;
|
}
|
|
public void setLineSpacing(String lineSpacing) {
|
this.lineSpacing = lineSpacing;
|
}
|
|
public double getLineSpacingSize() {
|
return lineSpacingSize;
|
}
|
|
public void setLineSpacingSize(double lineSpacingSize) {
|
this.lineSpacingSize = lineSpacingSize;
|
}
|
|
}
|