/*
|
* 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;
|
}
|
}
|