so you mean something like this (this is java code, for sake of understanding I used it). Or I am confusing it?
List<ServerAddress> addrs = new LinkedList<ServerAddress>();
addrs.add( new ServerAddress( "localhost" , 27017 ) );
addrs.add( new ServerAddress( "localhost" , 27018 ) );
Mongo m = new Mongo( addrs );
ReplicaSetStatus status = new ReplicaSetStatus( m , addrs );