public class ELabel extends javax.swing.JLabel { private String itsPicture = ""; public ELabel() { super(""); } public ELabel text (String title) { this.setText (title); return this; } public ELabel picture (String pic) { this.setIcon (new javax.swing.ImageIcon (pic)); itsPicture = pic; return this; } public String getPicture() { return itsPicture; } }