Class OverrideCheck


  • public final class OverrideCheck
    extends java.lang.Object
    A utility class to check whether one class overrides all methods of its superclass or an interface that it implements
    Author:
    Abhishek Sanoujam
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void check​(java.lang.Class parent, java.lang.Class subClass)
      Method to check a subclass overrides all methods in its superclass or the interface it implements
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • check

        public static void check​(java.lang.Class parent,
                                 java.lang.Class subClass)
        Method to check a subclass overrides all methods in its superclass or the interface it implements
        Parameters:
        parent -
        subClass -