| org.jboss.ejb.plugins.cmp.bridge.FieldBridge
FieldBridge | public interface FieldBridge (Code) | | FieldBridge represents one field for one entity.
Life-cycle:
Tied to the EntityBridge.
Multiplicity:
One for each entity bean field.
author: Dain Sundstrom author: Alex Loubyansky version: $Revision: 57209 $ |
getFieldName | public String getFieldName()(Code) | | Gets the name of this field.
the name of this field |
getValue | public Object getValue(EntityEnterpriseContext ctx)(Code) | | Gets the value of this field for the specified instance context.
Parameters: ctx - the context for which this field's value should be fetched the value of this field |
setValue | public void setValue(EntityEnterpriseContext ctx, Object value)(Code) | | Sets the value of this field for the specified instance context.
Parameters: ctx - the context for which this field's value should be set Parameters: value - the new value of this field |
|
|