What Property sets the Section Name in Advanced Properties Page for Custom Properties?
We have created an operation advisor, and we need some custom properties to be taken from the advanced properties page. Our plugin.xml looks as follows.
But the advanced properties section page shows the properties under an "undefined" section.
How can this value be set? Is there a tag that I am missing?
Regards,
Arun Batra
One answer
Hello Arun,
the properties are registered under the repository component that "own" them. In your case, is the componentId you specify an existing one? i.e. matching the id of an extension to repository components? If so, has that extension a name set? That is what you should see instead of the "undefined" string.
For example:
<extension point="com.ibm.team.repository.common.components">Regards,
<component
id="com.hsbc.ds.logical.child.creation.component"
name="My Name"
</component>
</extension>
Jorge.