Contribute content assist proposals to the different UI contexts.
2009.3
<pre>
<extension point="com.perforce.team.ui.contentAssist">
<provider
class="com.my.xyz.MyServerContentAssistProvider"
context="pending.edit">
</provider>
</extension>
</pre>
The above example contributes a content assist provider to the
Pending Changelist dialog known as context "pending.edit".
The specified provider must implemeent com.perforce.team.ui.editor.IContentAssistProvider.
It is recommnded to extend com.perforce.team.ui.editor.BaseContentAssistProvider
instead of directly implementing the interface to shield from future API changes.
This extension point is not used by any current P4ECLIPSE plugins.