Set<WodCompletionProposal> proposals = new HashSet<WodCompletionProposal>();
WodCompletionUtils.fillInElementTypeCompletionProposals(javaProject, partialElementType, 0, partialElementType.length(), proposals, false, null);
for (TagShortcut tagShortcut : _cache.getTagShortcuts()) {
String shortcut = tagShortcut.getShortcut();
if (shortcut.startsWith(partialElementType.toLowerCase())) {
proposals.add(new WodCompletionProposal(partialElementType, 0, partialElementType.length(), shortcut));
}
}
if (!proposals.isEmpty()) {
tagInfos = new LinkedList<TagInfo>();
for (WodCompletionProposal proposal : proposals) {