Back to project page ImageScanner.
The source code is released under:
Apache License
If you think the Android project ImageScanner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.scanner.beans; //from w w w. jav a 2 s .c o m import android.graphics.Bitmap; public class GalleryFolderBean { private Bitmap bitmap; private String folderName; private String folderPath; private String folderSize; public GalleryFolderBean(Bitmap bitmap, String folderName, String folderPath, String folderSize){ this.bitmap = bitmap; this.folderName = folderName; this.folderPath = folderPath; this.folderSize = folderSize; } public String getFolderPath() { return folderPath; } public void setFolderPath(String folderPath) { this.folderPath = folderPath; } public Bitmap getBitmap() { return bitmap; } public void setBitmap(Bitmap bitmap) { bitmap = bitmap; } public String getFolderName() { return folderName; } public void setFolderName(String folderName) { this.folderName = folderName; } public String getFolderSize() { return folderSize; } public void setFolderSize(String folderSize) { this.folderSize = folderSize; } }