Package gui.action

Examples of gui.action.LaunchChat


    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));

    buddyList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
   
    this.setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
View Full Code Here

TOP

Related Classes of gui.action.LaunchChat

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.