Plugin XML constraints

Hello!

I have found the email about that properties names in XML should be unique
https://public.kitware.com/pipermail/paraview/2012-June/025222.html

However I am interested, whether or not they can repeat on different depths of xml nested.

			<DoubleVectorProperty
				...
				<Hints>
					<PropertyWidgetDecorator type="EnableWidgetDecorator">
						<Property name="Enable Advanced" function="boolean" />
					</PropertyWidgetDecorator>
				</Hints>

			</DoubleVectorProperty>

			<DoubleVectorProperty
				....
				<Hints>
					<PropertyWidgetDecorator type="EnableWidgetDecorator">
						<Property name="Enable Advanced" function="boolean" />
					</PropertyWidgetDecorator>
				</Hints>
			</DoubleVectorProperty>

Or will <Property name= repeating cause a failure?

Thanks

It will not, this is fine and just pointing to the same property

Thank you a lot Mathieu!