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

de.agentlab.ds.tree.ItemWrapper Maven / Gradle / Ivy

package de.agentlab.ds.tree;

public class ItemWrapper {

    private T item;

    public ItemWrapper(T item) {
        this.item = item;
    }

    public T getItem() {
        return item;
    }

    @Override
    public String toString() {
        return this.item.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy