Skip to content

Instantly share code, notes, and snippets.

@CodeBoy722
Created May 13, 2019 09:57
Show Gist options
  • Save CodeBoy722/db59cb3d63e48579f27a00b3a9e77ec9 to your computer and use it in GitHub Desktop.
Save CodeBoy722/db59cb3d63e48579f27a00b3a9e77ec9 to your computer and use it in GitHub Desktop.
package com.androidcodeman.simpleimagegallery.utils;
/**
* Author CodeBoy722
*
* Custom class for holding data of images on the device external storage
*/
public class pictureFacer {
private String picturName;
private String picturePath;
private String pictureSize;
private String imageUri;
private Boolean selected = false;
public pictureFacer(){
}
public pictureFacer(String picturName, String picturePath, String pictureSize, String imageUri) {
this.picturName = picturName;
this.picturePath = picturePath;
this.pictureSize = pictureSize;
this.imageUri = imageUri;
}
public String getPicturName() {
return picturName;
}
public void setPicturName(String picturName) {
this.picturName = picturName;
}
public String getPicturePath() {
return picturePath;
}
public void setPicturePath(String picturePath) {
this.picturePath = picturePath;
}
public String getPictureSize() {
return pictureSize;
}
public void setPictureSize(String pictureSize) {
this.pictureSize = pictureSize;
}
public String getImageUri() {
return imageUri;
}
public void setImageUri(String imageUri) {
this.imageUri = imageUri;
}
public Boolean getSelected() {
return selected;
}
public void setSelected(Boolean selected) {
this.selected = selected;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment