samples/differentreturntype/src-api2.0/api/API.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:59:27 +0200
changeset 181 81d72f69fa42
parent 180 131332825eab
permissions -rw-r--r--
Incorporating Patrick's changes. I am not reall sure about the changes after the war, it is really 'or' it cannot be 'and'. I will change that when I do the reading through the whole chapter.
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
}