Package gui.action

Examples of gui.action.AddBuddy


    return ret;
  }

  private void init() {
    add = new JButton(this.propertiesMgr.getValue("addBuddyToList"));
    add.addActionListener(new AddBuddy(this.propertiesMgr, this));
    del = new JButton(this.propertiesMgr.getValue("delBuddyToList"));
    del.addActionListener(new DelBuddy(this));
    chat = new JButton(this.propertiesMgr.getValue("talkWith"));
    chat.addActionListener(new LaunchChat(this.propertiesMgr, MainFrame.myRef, this));
View Full Code Here

TOP

Related Classes of gui.action.AddBuddy

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.