~ubuntu-branches/ubuntu/trusty/ehcache/trusty

« back to all changes in this revision

Viewing changes to net/sf/ehcache/store/Store.java

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2008-07-14 02:08:53 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080714020853-37uz6uzh6mc5mcgx
Tags: 1.5.0-1
* New upstream release
* Add libjgroups-java to Build-Depends-Indep
* Bump Standards-Version to 3.8.0
* debian/copyright: remove the full text of Apache 2.0 license, as now
  is included in common licenses

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 * is a logical concept.
28
28
 *
29
29
 * @author Greg Luck
30
 
 * @version $Id: Store.java 519 2007-07-27 07:11:45Z gregluck $
 
30
 * @version $Id: Store.java 704 2008-07-13 00:17:52Z gregluck $
31
31
 */
32
32
public interface Store {
33
33
 
42
42
    Element get(Object key);
43
43
 
44
44
    /**
45
 
     * Gets an {@link Element} from the Disk Store, without updating statistics
 
45
     * Gets an {@link Element} from the Store, without updating statistics
46
46
     *
47
47
     * @return The element
48
48
     */
52
52
     * Gets an Array of the keys for all elements in the disk store.
53
53
     *
54
54
     * @return An Object[] of {@link java.io.Serializable} keys
55
 
     * @noinspection SynchronizeOnNonFinalField
56
55
     */
57
56
    public Object[] getKeyArray();
58
57