Package com.valhalla.jbother.jabber.smack

Examples of com.valhalla.jbother.jabber.smack.Blank


     *
     * @param text
     *            the message to send
     */
    public void sendBuddyMessage(String text) {
        Blank message = new Blank(text);
        if (BuddyList.getInstance().checkConnection()) {
            BuddyList.getInstance().getConnection().sendPacket(message);
        } else {
            BuddyList.getInstance().connectionError();
        }
View Full Code Here

TOP

Related Classes of com.valhalla.jbother.jabber.smack.Blank

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.