resources.report.rules.pmd.Clone_Implementation_Rules.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sanity4j Show documentation
Show all versions of sanity4j Show documentation
Sanity4J was created to simplify running multiple static code
analysis tools on the Java projects. It provides a single entry
point to run all the selected tools and produce a consolidated
report, which presents all findings in an easily accessible
manner.
The newest version!
Clone_Implementation_Rules
Clone_Implementation_Rules
ne_Implementation_Rules">Clone Implementation Rules
ProperCloneImplementation:
Object clone() should be implemented with super.clone().
CloneThrowsCloneNotSupportedException:
The method clone() should throw a CloneNotSupportedException.
CloneMethodMustImplementCloneable:
The method clone() should only be implemented if the class implements the Cloneable interface with the exception of a final method that only throws CloneNotSupportedException.