samples/instanceof/src/api/InstanceProvider.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 20:46:27 +0100
changeset 408 9a439a79c6d0
parent 209 1c999569643b
permissions -rw-r--r--
Use scala 2.10.4 to compile on JDK8
jtulach@74
     1
jtulach@74
     2
package api;
jtulach@74
     3
jtulach@74
     4
// BEGIN: instanceof.InstanceProvider
jtulach@74
     5
public interface InstanceProvider {
jtulach@210
     6
    public Class<?> instanceClass() throws Exception;
jtulach@210
     7
    public Object instanceCreate() throws Exception;
jtulach@74
     8
}
jtulach@74
     9
// END: instanceof.InstanceProvider