import java.awt.*; /** * A Label with preset size and on a white background. Great if you use Labels on top of pictures. */ public class WhiteLabel extends Label { WhiteLabel(String txt, int x, int y) { super(txt); move(x,y); resize(120,18); //För att ta hand om långa ord tex Spells if(txt.length() > 14) resize(10*(txt.length()-3),18); setBackground(Color.white); } }