

void swap(Name other){
String tmp = this.name;
this.name = other.name;
other.name = tmp;
}
Modify Names.java to have only one name variable name. Rewrite the swap() method so that it accepts a Names as a parameter and swaps the value referenced by the parameter with the value referenced by...
could you please help me with this problem, also I
need a little text so I can understand how you solved the
problem?
import java.io.File; import java.util.Scanner; /** *
This program lists the files in a directory specified by * the
user. The user is asked to type in a directory name. * If the name
entered by the user is not a directory, a * message is printed and
the program ends. */ public class DirectoryList { public static...