From 6494941037ae2670876de9940853d50538eb5129 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Fri, 19 Jun 2026 11:25:51 +0000
Subject: [PATCH] move to new repo
---
reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/components/Paragraph.java | 83 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 83 insertions(+), 0 deletions(-)
diff --git a/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/components/Paragraph.java b/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/components/Paragraph.java
new file mode 100644
index 0000000..09cf13f
--- /dev/null
+++ b/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/components/Paragraph.java
@@ -0,0 +1,83 @@
+/*
+ * 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;
+ }
+
+}
--
Gitblit v1.10.0