/* * 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.dto; /** * * @author ASUS */ public class HeaderData { private String libelle; private String value; private String position = "GAUCHE"; public String getLibelle() { return libelle; } public void setLibelle(String libelle) { this.libelle = libelle; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } }