home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / KeyedAccess.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  555 b   |  22 lines

  1. /*
  2.  * @(#KeyedAccess.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  
  8. package symantec.itools.db.beans.binding.databus;
  9. public interface KeyedAccess extends CollectionAccess
  10. {
  11.  
  12. public DataItem getItemByKey(String keyValue);
  13.  
  14.  
  15.      //Returns a DataItem associated with the given keyValue. Returns null if there is no DataItem associated
  16.      //with the keyValue.
  17.  
  18. public CollectionAccess getKeyList();
  19.  
  20.  
  21.      //Returns an Array of Strings which are the recognized keyValues for the KeyedAccess object.
  22. }