samples/instanceof/src/api/InstanceProvider.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:04:53 +0200
changeset 210 acf2c31e22d4
parent 209 1c999569643b
permissions -rw-r--r--
Merge: Geertjan's changes to the end of the chapter
     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