Back to project page sloop.
The source code is released under:
NON-LICENSE The Sloop data-browser source code is hereby released into the Public Domain. The original author, David Megginson, Megginson Technologies Ltd., and Acclar Open Ltd. provide no warranty:...
If you think the Android project sloop 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.megginson.sloop.model; // w w w . ja v a 2 s . c o m import java.util.Map; import android.os.Parcelable; /** * A single name/value pair from a {@link DataRecord}. * * This object contains the column name as well as the value. * * @author David Megginson */ public interface DataEntry extends Map.Entry<String, String>, Parcelable { /** * Indicate whether there is a filter associated with this entry. * * FIXME should query the DataRecord, not the DataEntry * * @return true if there is an associated filter; false otherwise. */ public abstract boolean hasFilter(); }