{
//get the appropriate YABOT action class
EcYabotEncoder.Action yabotAction = yabotMapping.get(a.getClass());
if (yabotAction != null)
{
encoder.action(yabotAction);
}
else
{
warnings.add("YABOT action not found for '" + a.getClass().getName() + "'.");
}