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/LargestWidth.java | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/LargestWidth.java b/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/LargestWidth.java
new file mode 100644
index 0000000..110ed1c
--- /dev/null
+++ b/reporting-adhoc/src/main/java/com/megatim/reporting/adhoc/pojo/LargestWidth.java
@@ -0,0 +1,59 @@
+/*
+ * 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.dynamic.reports.pojo;
+
+/**
+ * Pojo permettant de stocker la longueur adéquate des labels de la section titre
+ * @author ASUS
+ */
+public class LargestWidth {
+
+ private int leftLargestKey;
+
+ private int leftLargestValue;
+
+ private int rightLargestKey;
+
+ private int rightLargestValue;
+
+ public LargestWidth(int leftLargestKey, int leftLargestValue, int rightLargestKey, int rightLargestValue) {
+ this.leftLargestKey = leftLargestKey;
+ this.leftLargestValue = leftLargestValue;
+ this.rightLargestKey = rightLargestKey;
+ this.rightLargestValue = rightLargestValue;
+ }
+
+ public int getLeftLargestKey() {
+ return leftLargestKey;
+ }
+
+ public void setLeftLargestKey(int leftLargestKey) {
+ this.leftLargestKey = leftLargestKey;
+ }
+
+ public int getLeftLargestValue() {
+ return leftLargestValue;
+ }
+
+ public void setLeftLargestValue(int leftLargestValue) {
+ this.leftLargestValue = leftLargestValue;
+ }
+
+ public int getRightLargestKey() {
+ return rightLargestKey;
+ }
+
+ public void setRightLargestKey(int rightLargestKey) {
+ this.rightLargestKey = rightLargestKey;
+ }
+
+ public int getRightLargestValue() {
+ return rightLargestValue;
+ }
+
+ public void setRightLargestValue(int rightLargestValue) {
+ this.rightLargestValue = rightLargestValue;
+ }
+}
--
Gitblit v1.10.0