Home | History | Annotate | Download | only in fragments

Lines Matching defs:Entry

29 public abstract class ContactEntryAdapter<E extends ContactEntryAdapter.Entry>
40 public static class Entry {
97 * Resets the section data and returns the position of the given entry.
100 * @param entry the entry to return the position for
101 * @return the position of entry, or -1 if it isn't found
103 public final int setSections(ArrayList<ArrayList<E>> sections, E entry) {
114 if (e.equals(entry)) {
173 * Get the entry for the given position.
176 * @param position the position for the desired entry
179 public final static <T extends Entry> T getEntry(ArrayList<ArrayList<T>> sections,
203 public static <T extends Entry> int countEntries(ArrayList<ArrayList<T>> sections,
223 Entry entry = getEntry(mSections, position, mSeparators);
224 if (entry != null) {
225 return entry.id;
246 * Create a new view for an entry.
254 * Binds the data from an entry to a view.
256 * @param view the view to display the entry in
257 * @param entry the data to bind
259 protected abstract void bindView(View view, E entry);