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; /*from w w w .j a v a 2s . c o m*/ class Service extends Inode { private String[] mimetypes; private boolean saveSupported; private String id; public Service(String displayName, String path, String[] mimetypes, int drawable, boolean saveSupported, String id) { super(displayName, path, true, drawable); this.mimetypes = mimetypes; this.saveSupported = saveSupported; this.id = id; } public String[] getMimetypes() { return this.mimetypes; } public boolean isSaveSupported() { return this.saveSupported; } public String getServiceId() { return this.id; } }