jibx : how to remove the word "List" from auto generated java collections?

Marco,
You are correct, you need to use an extension customization. There are two ways to replace the method name:

  1. Use the strip-suffixes command.
    Your customization file would look something like this
    <schema-set xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <name-converter strip-suffixes="List"/>
    </schema-set>>

  2. Write a name-converter
    If you want your method to be getMarkets instead of getMarket.

Here's the documentation for what you want to do from the JiBX web site:
http://jibx.sourceforge.net/fromschema/codegen-extends.html
Don
JiBX contributor