original source : http://stackoverflow.com/questions/15206890/super-in-constructor
super
calls the constructor of the extended class. All classes in Java derive from Object
. Additionally, if the author of a class doesn’t create a constructor for the class, a default constructor is created that does nothing.