<<< Implementing multiple interfaces | Index | Book and Product example >>> |
The syntax for inheriting a class and implementing an interface:
public class SubclassName extends SuperclassName implements Interface1[, Interface2] { //... }
<<< Implementing multiple interfaces | Index | Book and Product example >>> |