@Override
protected void reportAlias(ICompletionReporter reporter,
IDLTKSearchScope scope, IModuleSource module,
SourceRange replacementRange, IType type,
String fullyQualifiedName, String alias, String suffix) {
IType aliasType = new AliasType((ModelElement) type,
fullyQualifiedName, alias);
IMethod ctorMethod = FakeConstructor.createFakeConstructor(null,
aliasType, type.equals(enclosingClass));
reporter.reportMethod(ctorMethod, "", replacementRange); //$NON-NLS-1$
}