samples/differentreturntype/src-api1.0/api/API.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 20:46:27 +0100
changeset 408 9a439a79c6d0
parent 180 131332825eab
permissions -rw-r--r--
Use scala 2.10.4 to compile on JDK8
jtulach@10
     1
package api;
jtulach@10
     2
jtulach@10
     3
import javax.swing.Icon;
jtulach@10
     4
jtulach@10
     5
public abstract class API {
jtulach@10
     6
// BEGIN: theory.binary.differentreturntype.api
jtulach@10
     7
    public static Icon getIcon() {
jtulach@181
     8
        return null; // compute something
jtulach@181
     9
    }
jtulach@180
    10
// END: theory.binary.differentreturntype.api
jtulach@10
    11
}