Package com.calclab.emite.im.events

Examples of com.calclab.emite.im.events.RosterGroupChangedEvent


  }

  private RosterGroup addGroup(final String groupName) {
    final RosterGroup group = groupName != null ? new RosterGroup(eventBus, groupName) : all;
    groups.put(groupName, group);
    eventBus.fireEventFromSource(new RosterGroupChangedEvent(ChangeType.added, group), this);
    return group;
  }
View Full Code Here


  }

  private void removeGroup(final String groupName) {
    final RosterGroup group = groups.remove(groupName);
    if (groupName != null && group != null) {
      eventBus.fireEventFromSource(new RosterGroupChangedEvent(ChangeType.removed, group), this);
    }
  }
View Full Code Here

TOP

Related Classes of com.calclab.emite.im.events.RosterGroupChangedEvent

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.