samples/differentreturntype/src-api2.0/api/API.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:58:05 +0200
changeset 152 eb6f29070331
parent 10 5611653dec2f
child 153 b5cbb797ec0a
permissions -rw-r--r--
Checking that all examples pair the opening and closing brackets
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@152
    10
// END: theory.binary.differentreturntype.api2
jtulach@10
    11
}