samples/differentreturntype/src-api2.0/api/API.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
parent 180 131332825eab
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 api;
jtulach@10
     2
jtulach@10
     3
import javax.swing.ImageIcon;
jtulach@10
     4
jtulach@10
     5
public abstract class API {
jtulach@10
     6
// BEGIN: theory.binary.differentreturntype.api2
jtulach@10
     7
    public static ImageIcon getIcon() {
jtulach@10
     8
        return null;
jtulach@10
     9
    }
jtulach@181
    10
// END: theory.binary.differentreturntype.api2
jtulach@10
    11
}