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; //ww w . ja v a 2s. com public class Folder { private final Inode[] inodes; private final String view; private final String name; public Folder(Inode[] inodes, String view, String name) { this.inodes = inodes; this.view = view; this.name = name; } public Inode[] getInodes() { return this.inodes; } public String getView() { return this.view; } public String getName() { return this.name; } }