if (!showOnlyTemplates) {
//other participants
List<Object> participants = ExtensionHelper.getParticipants(ExtensionHelper.PYDEV_COMPLETION);
for (Object participant : participants) {
if (participant instanceof IPyDevCompletionParticipant2) {
IPyDevCompletionParticipant2 participant2 = (IPyDevCompletionParticipant2) participant;
results3.addAll(participant2.computeConsoleCompletions(tokenAndQual, this.naturesUsed, viewer,
offset));
}
}
Collections.sort(results3, IPyCodeCompletion.PROPOSAL_COMPARATOR);
}