Uses of Class
net.sourceforge.obby4j.User

Packages that use User
net.sourceforge.obby4j   
net.sourceforge.obby4j.listeners   
 

Uses of User in net.sourceforge.obby4j
 

Methods in net.sourceforge.obby4j that return User
 User Document.getAuthor()
           
 User Client.getSelf()
           
 User Client.getUserByNet6Id(int net6Id)
          Searches for a user by his net6 user ID.
 User Client.getUserByObbyId(int obbyId)
          Searches for a user by his obby user ID.
 

Methods in net.sourceforge.obby4j that return types with arguments of type User
 java.util.Collection<User> Document.getSubscribers()
           
 java.util.List<User> Client.getUsers()
           
 

Methods in net.sourceforge.obby4j with parameters of type User
 void Protocol.login(User user)
          Logs in to the server as the user of the Client instance.
 

Uses of User in net.sourceforge.obby4j.listeners
 

Methods in net.sourceforge.obby4j.listeners with parameters of type User
 void ChatListener.messageReceived(User sender, java.lang.String message)
          Gets called when a chat message is received.
 void UserListener.userJoined(User user)
          Gets called when a user has joined a session.
 void UserListener.userParted(User user)
          Gets called when a user has parted from a session.