Hi excuse the mistake in the title.
I'm having trouble on inheriting methods from a superclass in Java. Basically I've forgotten how to.
I want to inherit 3 methods from the Artwork superclass to be used in the Print subclass. The reason being I want to add an extra parameter (printNumber) to these methods in the Print Class.
This section of code from the Artwork class is what I want to be inherited:
Code:
	/**
	 * Prints
...