}
@Override
public Void visitConstructorDeclaration( ConstructorDeclaration node, SourceIndex index )
{
MethodDefinition def = node.getUserData( Keys.METHOD_DEFINITION );
ClassEntry classEntry = new ClassEntry( def.getDeclaringType().getInternalName() );
ConstructorEntry constructorEntry = new ConstructorEntry( classEntry, def.getSignature() );
index.addDeclaration( node.getNameToken(), constructorEntry );
return node.acceptVisitor( new SourceIndexBehaviorVisitor( constructorEntry ), index );
}