I have a class defined

public class GSS
{
    private static Vector users = new Vector();

    ...

    public static void registerUser(UserProfile usr)
    {
        users.add(usr);
    }

    ...
}

I then have a Runit.java

public class Runit
{

        ...

        joey.setPersonID(1);
        joey.setNamePrefix(1);
        joey.setUsername("jms");
        joey.setNickname("Richard");
        joey.addDevice( dev1 );

        ...

        GSS.registerUser(joey);

        ...

}

When I step into the GSS, I can't see users.  (It isn't part of a
local stack).  When I step back into the Runit, I still can't see
the users.

Is there any way to see static member variables of a static class?

-- 
Galen Boyer
New Orleans is sink'n man and I don't want to swim.


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

Reply via email to