Advertisement
KangUcen

TableImage.java

May 27th, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package popup;
  2. import javax.swing.ImageIcon;
  3. public class TableImage {
  4. private String countryName;
  5. private ImageIcon countryFlag;
  6. public ImageIcon getCountryFlag() {
  7. return countryFlag;
  8. }
  9. public void setCountryFlag(ImageIcon countryFlag) {
  10. this.countryFlag = countryFlag;
  11. }
  12. public String getCountryName() {
  13. return countryName;
  14. }
  15. public void setCountryName(String countryName) {
  16. this.countryName = countryName;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement