samples/differentreturntype/src-impl/impl/Impl.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
jtulach@10
     1
package impl;
jtulach@10
     2
import api.API;
jtulach@10
     3
import javax.swing.Icon;
jtulach@10
     4
jtulach@10
     5
public class Impl extends API {
jtulach@10
     6
    public static void main(String[] args) {
jtulach@10
     7
        Icon icon = API.getIcon();
jtulach@10
     8
        System.err.println("OK: " + icon);
jtulach@10
     9
    }
jtulach@10
    10
}