}
@Override
public Void visitSimpleType( SimpleType node, SourceIndex index )
{
TypeReference ref = node.getUserData( Keys.TYPE_REFERENCE );
if( node.getIdentifierToken().getStartLocation() != TextLocation.EMPTY )
{
ClassEntry classEntry = new ClassEntry( ref.getInternalName() );
index.addReference( node.getIdentifierToken(), classEntry, m_classEntry );
}
return recurse( node, index );
}