/* Author : Michael Robinson Program : theFinalMethodClass.java Purpose : Simple example of a final method which can not be modified by any sub-class. Updated : August 18, 2099 */ public class theFinalMethodClass { public static final void theFinalMethod() { System.out.println( "I am theFinalMethod() and you can" + " NOT override me." ); }//end public static final void theFinalMethod() }//end public class theFinalMethodClass