Package com.caucho.xmpp.im

Examples of com.caucho.xmpp.im.Text


      from = getJid(env);

    if ("".equals(show))
      show = null;

    Text statusText = null;

    if (! "".equals(status))
      statusText = new Text(status);

    return new ImPresence(to, from, show, statusText, priority, extras);
  }
View Full Code Here


  {
  }

  public ImPresence(String status)
  {
    _status = new Text(status);
  }
View Full Code Here

TOP

Related Classes of com.caucho.xmpp.im.Text

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.