Back to project page FxExplorer.
The source code is released under:
Apache License
If you think the Android project FxExplorer 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 info.breezes.fxmanager.model; //from w w w .j a v a 2 s .c o m import android.graphics.drawable.Drawable; import java.io.Serializable; /** * Created by Qiao on 2014/12/30. */ public class MediaItem implements Serializable { public static enum MediaType { Folder, File } public String path; public String title; public MediaType type; public long length; public int childCount; public long lastModify; public String subType; public transient Drawable icon; @Override public String toString() { return title; } }