Examples of XCDERootDirectoryUserStimulusChange


Examples of ca.uwaterloo.fydp.xcde.XCDERootDirectoryUserStimulusChange

    {
    //notify the server
    if (parentRegister != null && XCDERegisterProvider.getProvider().getCurrentRegister() == parentRegister)
      {
      XCDERootDirectoryUserState toUpdate = new XCDERootDirectoryUserState(newUser.getUsername(),newUser.getPath(),newUser.getCursor(),newUser.getBuild(),newUser.getTest());
      parentRegister.getRoot().makeChange(new XCDERootDirectoryUserStimulusChange(oldUser.getUsername(),toUpdate));
      }
    //notify listeners of the change
    for (Iterator i = changeListeners.iterator(); i.hasNext(); )
      ((IUserDataListListener)i.next()).updateUser(oldUser, newUser);
    }
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.