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
     1 package api;
     2 
     3 import javax.swing.Icon;
     4 
     5 public abstract class API {
     6 // BEGIN: theory.binary.differentreturntype.api
     7     public static Icon getIcon() {
     8         return null; // compute something
     9     }
    10 // END: theory.binary.differentreturntype.api
    11 }