samples/forjoe/src-impl/impl/joe/Main.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 20:46:27 +0100
changeset 408 9a439a79c6d0
permissions -rw-r--r--
Use scala 2.10.4 to compile on JDK8
     1 
     2 package impl.joe;
     3 
     4 import api.InterfaceThatJustJoeCanImplement;
     5 
     6 public class Main {
     7     public static void main(String[] args) throws Exception {
     8         InterfaceThatJustJoeCanImplement i = new JoesImpl();
     9         
    10         i.everyoneCallThisJoeWillHandleTheRequest();
    11     }
    12 }