Tagged Questions
1
vote
2answers
301 views
How do you put a subclass method into a superclasses JLabel?
So here's the class and the super class, question to follow:
TestDraw:
package project3;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class TestDraw ...