Back to project page dttv-android.
The source code is released under:
GNU General Public License
If you think the Android project dttv-android 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 dttv.app.model; //w w w .j av a2 s .c o m import java.io.File; public class Item extends File { private static final long serialVersionUID = 1L; public Item(File dir, String name) { super(dir, name); this.file = name; // TODO Auto-generated constructor stub } public String file; private int icon; public int getIcon() { return icon; } public void setIcon(int icon) { this.icon = icon; } @Override public String toString() { return file; } }