home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / prosrc.bin / ExpandableSet.java < prev    next >
Text File  |  1998-03-18  |  524b  |  20 lines

  1. /*
  2.  * @(#)ExpandableSet.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  /**
  8.  * <P> A Data Source must implement this interface in order to allow a cursor
  9.  * to access an object(row) in the Data Source
  10.  */
  11.  
  12. package symantec.itools.db.beans.binding;
  13. public interface ExpandableSet
  14. {
  15.     /**
  16.     * Gets the Object at the given position
  17.     * @param position.     The deesired position.
  18.     */
  19.     public Object getElementAt(int position) throws PositionOutOfRangeException;
  20. }