ImageFileInfo.java 244 B

1234567891011
  1. package epson.print.imgsel;
  2. public class ImageFileInfo {
  3. public String mCanonicalPath;
  4. public long mMediaInfoId;
  5. public ImageFileInfo(String str, long j) {
  6. this.mCanonicalPath = str;
  7. this.mMediaInfoId = j;
  8. }
  9. }