Back to project page AndroidOperaLink.
The source code is released under:
Apache License
If you think the Android project AndroidOperaLink 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.opera.link.apilib.android.items; /*from w ww. java 2 s. c o m*/ public abstract class NoteFolderEntry extends FolderEntry<NoteFolderEntry> { public static final String DATATYPE = "note"; @Override public String getDatatype() { return DATATYPE; } public boolean isNote() { return false; } }