public void apply(ICompletionReporter reporter) throws BadLocationException {
ICompletionContext context = getContext();
if (!(context instanceof NamespacePHPDocVarStartContext)) {
return;
}
NamespacePHPDocVarStartContext concreteContext = (NamespacePHPDocVarStartContext) context;
if (concreteContext.isGlobal()) {
GlobalTypesStrategy strategy = new GlobalTypesStrategy(context) {
protected int getExtraInfo() {
return ProposalExtraInfo.TYPE_ONLY;
}