On 7/11/05, Lu, Shengkai <[EMAIL PROTECTED]> wrote: > When the schema file was compiled, the RA.java, RP.java, RAType.java, > RPType.java and some Impl files were generated. In the RAType.java I could > see getRP() which returns an ArrayList, but nowhere I can find setRP(). Did > I miss something here? Thanks for your help.
No you didn't. The default implementation has a fixed list, which may be manipulated by you, for example by invoking addAll(myList) If you prefer another style, you might to use the jaxb:collectiontype customization and set it to "indexed". (See src/test/jaxb/types.xsd for an example.) If neither the default style nor the "indexed" style are satisfying you, feel free to implement another instance of MultiplePropertySG and post it for review on this list. Jochen -- What are the first steps on the moon, compared to your child's? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
