Šablona třídy v Javě
Šablona nového souboru *.java
// Java Application created RRRR-MM; updated RRRR-MM; /** Routine description. * @author Name * @version 1.0.0 * Routine detailed description. */ import java.util.*; import java.io.*; import java.lang.*; public class ClassName { public static void main(String[] args) { // ToDo application code here System.out.println("Text to print."); } // End of the main method } // End of the public class