1 package de.jwi.jgallery; 2 3 24 25 import java.io.Serializable ; 26 27 31 public class ThumbNailInfo implements Serializable  32 { 33 private String thumbPath; 34 private String thumbHeight; 35 private String thumbWidth; 36 37 38 public ThumbNailInfo(String thumbPath, String thumbWidth, String thumbHeight) 39 { 40 this.thumbPath = thumbPath; 41 this.thumbHeight = thumbHeight; 42 this.thumbWidth = thumbWidth; 43 } 44 45 public String getThumbHeight() 46 { 47 return thumbHeight; 48 } 49 public String getThumbPath() 50 { 51 return thumbPath; 52 } 53 public String getThumbWidth() 54 { 55 return thumbWidth; 56 } 57 } 58 | Popular Tags |