samples/instanceof/src/api/InstanceProvider.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
parent 209 1c999569643b
permissions -rw-r--r--
Using HTTPS to download the libraries
     1 
     2 package api;
     3 
     4 // BEGIN: instanceof.InstanceProvider
     5 public interface InstanceProvider {
     6     public Class<?> instanceClass() throws Exception;
     7     public Object instanceCreate() throws Exception;
     8 }
     9 // END: instanceof.InstanceProvider