00001 package guiUtilities;
00002 import javax.swing.ImageIcon;
00003
00004 public class Photo {
00005 public String caption;
00006 public ImageIcon icon;
00007 public String name;
00008 public String headerTitle;
00009 public String testno;
00010
00011 public Photo(ImageIcon icon, String title, String name, String headerTitle, String testno) {
00012 this.icon = icon;
00013 this.caption = title;
00014 this.name=name;
00015 this.headerTitle=headerTitle;
00016 this.testno = testno;
00017 }
00018
00019 public void setIcon(ImageIcon i) {
00020 icon = i;
00021 }
00022 public String getIconTitle() {
00023 return caption;
00024 }
00025 public ImageIcon getIcon() {
00026 return icon;
00027 }
00028 }