public void convertAnother(Object value) {
if (value == null) {
converterLookup.getNullConverter().marshal(value, this, streamWriter);
} else {
Converter converter = converterLookup.lookupConverterForType(value.getClass());
converter.marshal(value, this, streamWriter);
}
}
public List getObjects() {
return this.objects;