Package javax.wireless.messaging

Examples of javax.wireless.messaging.MessageConnection.newMessage()


  {
    try
    {
     
      MessageConnection conn = (MessageConnection)Connector.open(number);
      TextMessage msg = (TextMessage)conn.newMessage(MessageConnection.TEXT_MESSAGE);
      msg.setPayloadText(text);
      conn.send(msg);
      Dialog.show("", Contents.done, null, Dialog.TYPE_CONFIRMATION, null, 3000);
      //midlet.display.setCurrent(Contents.done, midlet.getGuiRosterItem());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.