Software >> Development >> Languages >> Java >> What is a skeleton of a Java Class (application)

/** ** Description **/ public class SimplestApplication { /** Starts the program. * (The String arguments, args, are not used in * this application.) **/ public static void main(String[] args) { // Write code to do something here. } }