public class DictionaryBase<T extends IData> {
    protected Map<String, T> mdic = new HashMap<>();
    protected T Add(String Name) {
        T objNew = new T();
        objNew.Name(Name);
        mdic.put(Name, objNew);
        return objNew;
    }
On new T() I have the Error. What is the correct way to do this?
