Package jetbrains.communicator.core.users

Examples of jetbrains.communicator.core.users.UserPresence


    };
    assert null != bob.getRoster().getPresence(user);


    // First, change own presence and check it's changed from bob's point of view
    UserPresence presence = new UserPresence(PresenceMode.AWAY);
    assert presence.isOnline();

    myTransport.setOwnPresence(presence);
    new WaitFor(TIMEOUT) {
      @Override
      protected boolean condition() {
View Full Code Here


  private final Collection<String> myProjects;
  private UserPresence myPresence;

  // For tests only:
  public OnlineUserInfo(InetAddress address, int port) {
    this(address, port, new HashSet<String>(), new UserPresence(true));
  }
View Full Code Here

TOP

Related Classes of jetbrains.communicator.core.users.UserPresence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.