...
| Code Block | ||
|---|---|---|
| ||
class Super {
protected final void doLogic() { // Declare as final
System.out.println("Super invoked");
// Do sensitive operations
}
}
|
Exceptions
MET04-J-EX0: For classes that implement the java.lang.Cloneable interface, the accessibility of the Object.clone() method should be increased from protected to public [SCG 2009].
...