A short summary of the question: I have a parent class which is extended by a child class.
public class Parent{ public Parent(){ //constr
That would call the Child class constructor, which in turn will call the Parent class constructor.
Child
Parent