Package gui.action

Examples of gui.action.SendMessage


    //Set actions
    if (buddyVector.size() == 1)
    {
      sendButton.addActionListener(
        new SendMessage(this, (Buddy) buddyVector.elementAt(0)));
      messageField.addKeyListener(
        new SendMessage(this, (Buddy) buddyVector.elementAt(0)));
    }
    else if (1 <= buddyVector.size())
    {
      sendButton.addActionListener(new SendMessageToGroup());
      messageField.addKeyListener(new SendMessageToGroup());
View Full Code Here

TOP

Related Classes of gui.action.SendMessage

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.