The question is how to return a string from java method in VBA. For example I have a code in java:
package someclass;
public class SomeClass {
    public static String someMethod(String s){
        return "this is some string: "+s;
    }
    public static void main(String[] args) {
        System.out.println(someMethod("Hello world!"));
    } 
}
Now the question is how to call someMethod in VBA?