Kenmegne
6 days ago 6494941037ae2670876de9940853d50538eb5129
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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;
    }
}