com.evanmclean.evlib.velocity
Class AbstractResultSetMethodizer.Row

java.lang.Object
  extended by com.evanmclean.evlib.velocity.AbstractResultSetMethodizer.Row
Enclosing class:
AbstractResultSetMethodizer

public abstract class AbstractResultSetMethodizer.Row
extends Object

Each row from the result set is returned as one of these objects which does the translation from property name to a column in the result set.

Author:
Evan McLean McLean Computer Services (see the overview for copyright and licensing.)

Constructor Summary
AbstractResultSetMethodizer.Row()
           
 
Method Summary
 Object get(String property_name)
          Called by velocity to get the property of the specified name.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractResultSetMethodizer.Row

public AbstractResultSetMethodizer.Row()
Method Detail

get

public Object get(String property_name)
Called by velocity to get the property of the specified name.

Parameters:
property_name - The name of the property to retrieve.
Returns:
The object represented by the property name.
Throws:
VelocityException - If the property name is unknown.