You can call non-private methods of the superclass with keyword super. code example
Example: public class extends java super
public MountainBike(int startHeight,
int startCadence,
int startSpeed,
int startGear) {
super(startCadence, startSpeed, startGear);
seatHeight = startHeight;
}