Package org.eclipse.ecf.protocol.msn

Examples of org.eclipse.ecf.protocol.msn.Status


  public String getName() {
    return contact.getDisplayName();
  }

  public Mode getMode() {
    Status status = contact.getStatus();
    if (status == Status.ONLINE) {
      return Mode.AVAILABLE;
    } else if (status == Status.BUSY) {
      return Mode.DND;
    } else if (status == Status.APPEAR_OFFLINE) {
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.protocol.msn.Status

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.