samples/reexport/src-query/org/apidesign/reexport/query/Query.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
parent 94 9f71e6842995
permissions -rw-r--r--
Updating to NBMs from NetBeans 8.0.1 as some of them are required to run on JDK8
jtulach@94
     1
package query;
jtulach@94
     2
jtulach@94
     3
import api.String;
jtulach@94
     4
jtulach@94
     5
public final class Query {
jtulach@94
     6
    public String computeReply() {
jtulach@94
     7
        char[] hello = { 'H', 'e', 'l', 'l', 'o' };
jtulach@94
     8
        return new String(hello);
jtulach@94
     9
    }
jtulach@94
    10
}