samples/genericconstructor/src-generics/org/apidesign/template/Template.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
     1 package org.apidesign.template;
     2 
     3 // BEGIN: generics.constructor.template2
     4 public final class Template<T> extends Object {
     5     private final Class<T> type;
     6 
     7     public Template(Class<T> type) { this.type = type; }
     8     public Class<T> getType() { return type; }
     9 
    10     // now what!?
    11     public Template() { this(Object.class); }
    12 } 
    13 // END: generics.constructor.template2