What do the 3 dots following String in the following method mean?
String
public void myMethod(String... strings){ // method body }
Also to shed some light, it is important to know that var-arg parameters are limited to one and you can't have several var-art params. For example this is illigal:
public void myMethod(String... strings, int ... ints){ // method body }