01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08:
09: package com.gwtext.client.data;
10:
11: /**
12: * Store traversal callback.
13: *
14: * @see com.gwtext.client.data.Store#each(StoreTraversalCallback)
15: * @see com.gwtext.client.data.Store#filterBy(StoreTraversalCallback)
16: */
17: public interface StoreTraversalCallback {
18:
19: /**
20: * The callback method.
21: *
22: * @param record the record being traversed
23: * @return boolean value
24: */
25: boolean execute(Record record);
26: }
|