Code:
package myPackage;

public interface ComputerPlayerInterface {
 // Method signatures, which all submitted computer players must have. 
 String test(); 
}
dude, that's java 101