/* Author : Michael Robinson Program : VehicleSPClass.java Purpose : This is a super-class that contains multiple methods which perform specific jobs and can be inherited by any other class. At the same time this class is inheriting from the ToolsSPClass super-class, making this class a sub-class. The methods in this class can be accessed from a main program and they can also be overridden by other sub- classes that can inherit this class. Updated : September 23, 2099 */ //This is also a super class to other subclasses public class VehicleSPClass extends ToolsSPClass { public static void myInfo() { System.out.println( "I am the VehicleSPClass" ); }//end public static void myInfo() public static void brandName() { System.out.println( "I am the brandName in the" + " VehicleSPClass" ); }//end public static void brandName() public static void exteriorColor() { System.out.println( "I am the exteriorColor in the" + " VehicleSPClass" ); }//end public static void exteriorColor() public static void interiorColor() { System.out.println( "I am the interiorColor in the" + " VehicleSPClass" ); }//end public static void interiorColor() public static void tires() { System.out.println( "My car has tires in the" + " VehicleSPClass" ); }//end public static void tires() public static void doors() { System.out.println( "My car has 4 doors in the" + " VehicleSPClass" ); }//end public static void doors() public static void capacity() { System.out.println( "My car seats 5 people in the" + " VehicleSPClass" ); }//end public static void capacity() public static void mpg() { System.out.println( "My car's mpg is 200 in the" + " VehicleSPClass" ); }//end public static void mpg() }//end public class VehicleSPClass extends toolsSPClass