<<< Data Attributes and Class Candidates | Index | The Class class >>> |
To declare a subclass
public class SubclassName extends SuperClassName{}
To call a superclass constructor
super( argumentList )
To call a superclass method
super.methodName( argumentList )
<<< Data Attributes and Class Candidates | Index | The Class class >>> |