/**
 * This class belongs to the examples.skeletons package.
 */
 package examples.skeletons; 
/**
   * This class contains the minimum code to create a Java application.
   *
   * ApplicationSkeleton is an identifier for the class. Class names always start
   * with a capital letter and use mixed case.
   */
   public class ApplicationSkeleton {
 public static void main(String[] args) {
   // In this example, nothing is done in the main method.
 }
 /**
   * Sometimes we put comments beside braces in order to quickly determine the
   * entities (classes, methods, loops) that they bound or delimit. See example
   * comment below.
   */
} // end class ApplicationSkeleton