Community
Participate
Working Groups
Build ID: xxx Steps To Reproduce: none More information: InterfaceBeanHandler should provide a means to access the configuration element just like it provide access to the contributing bundle: a method with return type IConfigurationElement could answer the configuration element. The is required eg to access sequence order information for choices within unbounded sequences: <sequence minOccurs="1" maxOccurs="unbounded"> <choice> <element ref="submodule"/> <element ref="assembly"/> </choice> </sequence> the current implementation would answer submodules or assemblies but would not preserve sequence order like <submodule"/> <assembly"/> <submodule"/> <assembly"/> access to the configuration element would enable the user to extract order information if required
Created attachment 119268 [details] patch implementing proposed behavior
Thanks for the patch!