samples/hellowithsubclassing/src/org/apidesign/hello/Hello.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
jtulach@70
     1
package org.apidesign.hello;
jtulach@70
     2
jtulach@70
     3
// BEGIN: hello.Hello
jtulach@70
     4
public class Hello {
jtulach@70
     5
    public void hello() { System.out.println ("Hello"); }
jtulach@70
     6
}
jtulach@70
     7
// END: hello.Hello