I'm not sure if the following will result in deep or shallow copy?
public void viewImages(final String[] instancesFilename) {
String[] instances = (String[])instancesFilename.clone();
}
Is there a simple and fast way to deep copy a string array?