Sorry but I'm not able to phrase this question properly without an example. Say oneMethod has such a signature:
void oneMethod(String... strings);
I call oneMethod by
void callOneMethod(int numStrings) {
oneMethod("s" + 0, "s" + 1, ..., "s" + (numStrings - 1));
}
How should I write my callOneMethod?
Also, I very much appreciate it if anyone can help rephrase this question better :)