Examples of BuddySelectionChangedEvent


Examples of de.fu_berlin.inf.dpp.ui.widgets.viewer.roster.events.BuddySelectionChangedEvent

     *            of the buddy who's selection changed
     * @param isSelected
     *            new selection state
     */
    public void notifyBuddySelectionChanged(JID jid, boolean isSelected) {
        BuddySelectionChangedEvent event = new BuddySelectionChangedEvent(jid,
            isSelected);
        for (BaseBuddySelectionListener buddySelectionListener : this.buddySelectionListeners) {
            buddySelectionListener.buddySelectionChanged(event);
        }
    }
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.