I have seen two ways to draw from another class.
First and more simply:
"public class apples extends tuna{"
And another method which looks like:
tuna tunaObject = new tuna ():
tunaObject.test();
As far as I know these two lines do the same thing and they draw from another class. The second way just seems way harder than it has to be.