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
     1 package query;
     2 
     3 import api.String;
     4 
     5 public final class Query {
     6     public String computeReply() {
     7         char[] hello = { 'H', 'e', 'l', 'l', 'o' };
     8         return new String(hello);
     9     }
    10 }