All java classes that you want to run as an "entry-point", i.e. starting point need to have a main method.


public static void main(String[] args)
{
// starting code goes in here
}


It...