Examples of RosterGroupChangedEvent


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

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

  }

  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
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.