velosurf.sql
Interface DataAccessor

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

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

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~