KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > testlib > modifiers > NonFinalBecomesFinal


1 package testlib.modifiers;
2
3 /**
4  * It is a binary compatibility error for a non-final class to become
5  * final in a later version, because users may have created classes which
6  * are derived from it. Such classes will fail to load with the new version
7  * of the class present.
8  */

9
10 public final class NonFinalBecomesFinal
11 {
12 }
13
Popular Tags