Yes, super()
(lowercase) calls a constructor of the parent class. You can include arguments: super(foo, bar)
There is also a super
keyword, that you can use in methods to invoke a method of the superclass
A quick google for "Java super" results in this