All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eadge.extractpdfexcel.data.utils.MyUnique Maven / Gradle / Ivy

The newest version!
package org.eadge.extractpdfexcel.data.utils;

/**
 * Created by eadgyo on 21/07/16.
 *
 */
public class MyUnique
{
    private T t;

    public MyUnique()
    {
        this.t = null;
    }

    public MyUnique(T t)
    {
        this.t = t;
    }

    public T getT()
    {
        return t;
    }

    public void setT(T t)
    {
        this.t = t;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy