samples/reexport/src-query/query/Query.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:54:12 +0200
changeset 94 9f71e6842995
permissions -rw-r--r--
Showing transitive change on the project
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
}