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

org.yes.tools.utils.OutParameter Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
/**
 * License: http://www.apache.org/licenses/LICENSE-2.0
 * Home page: https://github.com/linlurui/entityQueryable
 * Note: to build on java, include the jdk1.6+ compiler symbol (and yes,
 * I know the difference between language and runtime versions; this is a compromise).
 *
 * @author linlurui
 * @Date Date: 2017-09-09
 */

package org.yes.tools.utils;

public class OutParameter {
    public OutParameter() {
    }

    public OutParameter(T data) {
        this.data = data;
    }

    private T data;

    public T getData() {
        return data;
    }

    public void setData(T data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy