Examples of XCDERootDirectoryUserStimulusRemove


Examples of ca.uwaterloo.fydp.xcde.XCDERootDirectoryUserStimulusRemove

  public void removeUser(UserData user, boolean fromServer)
    {
    //remove from the active server, if there is one
    if (!fromServer && parentRegister != null && XCDERegisterProvider.getProvider().getCurrentRegister() == parentRegister)
      {
      parentRegister.getRoot().makeChange(new XCDERootDirectoryUserStimulusRemove(user.getUsername()));
      }
    users.remove(user);
    //notify listeners
    for (Iterator i = changeListeners.iterator(); i.hasNext(); )
      ((IUserDataListListener)i.next()).removeUser(user);
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.