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 / ExpandableSet.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  524 b   |  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. }