Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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.filepicker.sdk; /* w w w.java2 s .co m*/ public class CacheElement { private Folder data; public CacheElement(Folder data) { this.data = data; } public Folder getData() { return this.data; } }