samples/differentreturntype/src-impl/impl/Impl.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
permissions -rw-r--r--
Updating to NBMs from NetBeans 8.0.1 as some of them are required to run 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
}