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

org.xillium.base.beans.template.MapTemplate Maven / Gradle / Ivy

package org.xillium.base.beans.template;

import java.util.*;


public abstract class MapTemplate {
    public final Map map = new HashMap();

    public void add(T element) {
        map.put(element.getName(), element);
    }

    public T get(String name) {
        return map.get(name);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy