What do the 3 dots following String in the following method mean?
String
public void myMethod(String... strings){ // method body }
Just think of it as the keyword params in C#, if you are coming from that background :)
params