Where does RTC get the Description for a Follup-up Action?
In RTC, when you have a Follow-up Action selected/enabled and you click on it, it fills in the Name and (I guess) the Description to the right of the lists of Preconditions and Follow-up actions. Where does it get this description from? I had thought it was from the Text of the Feature Description tab on the Information tab of the Participant Feature project. However, I have Text in mine and it is not showing up.
I don't see anywhere else really that has a Description field in either the plugin.xml of the Participant project or the feature.xml in the Participant Feature project.
Thanks,Susan
I don't see anywhere else really that has a Description field in either the plugin.xml of the Participant project or the feature.xml in the Participant Feature project.
Thanks,Susan
Accepted answer
its from the description field of the Plugin.xml of the OperationParticipant
<extension
point="com.ibm.team.process.client.operationParticipants">
<operationParticipant
class="advisor.example.OperationParticipant1"
id="advisor.example.operationParticipant1"
name="name">
<description>
description body text
</description>
</operationParticipant>
</extension>
<extension
point="com.ibm.team.process.client.operationParticipants">
<operationParticipant
class="advisor.example.OperationParticipant1"
id="advisor.example.operationParticipant1"
name="name">
<description>
description body text
</description>
</operationParticipant>
</extension>