samples/forjoe/src-impl/impl/joe/Main.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:53:37 +0200
changeset 76 ee4e8d38093e
permissions -rw-r--r--
Finished review of "are abstract classes useful?", up to line 1600
jtulach@76
     1
jtulach@76
     2
package impl.joe;
jtulach@76
     3
jtulach@76
     4
import api.InterfaceThatJustJoeCanImplement;
jtulach@76
     5
jtulach@76
     6
public class Main {
jtulach@76
     7
    public static void main(String[] args) throws Exception {
jtulach@76
     8
        InterfaceThatJustJoeCanImplement i = new JoesImpl();
jtulach@76
     9
        
jtulach@76
    10
        i.everyoneCallThisJoeWillHandleTheRequest();
jtulach@76
    11
    }
jtulach@76
    12
}