samples/differentreturntype/src-api2.0/api/API.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:59:25 +0200
changeset 180 131332825eab
parent 154 0fd5e9c500b9
child 181 81d72f69fa42
permissions -rw-r--r--
polishing lines 500-1000
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@180
     8
// END: theory.binary.differentreturntype.api2
jtulach@10
     9
        return null;
jtulach@10
    10
    }
jtulach@10
    11
}