velosurf.sql
Interface DataAccessor

All Known Implementing Classes:
DBReference, Instance, RowIterator, PooledStatement, PooledPreparedStatement, MapDataAccessor

public interface DataAccessor

This interface represents objects having read-only properties

Author:
Claude Brisson

Method Summary
 java.lang.Object get(java.lang.Object inKey)
          get the property named inKey
 

Method Detail

get

public java.lang.Object get(java.lang.Object inKey)
                     throws java.sql.SQLException
get the property named inKey
Parameters:
inKey - the name of the property to return
Returns:
the value of the property, or null if not found
Throws:
java.sql.SQLException - when thrown by the database engine


ooOoo