Examples of XCDERootDirectoryUserStimulusAdd


Examples of ca.uwaterloo.fydp.xcde.XCDERootDirectoryUserStimulusAdd

    users.add(user);
    //send the change to the server if we are using a server
    if (!fromServer && parentRegister != null && XCDERegisterProvider.getProvider().getCurrentRegister() == parentRegister)
      {
      XCDERootDirectoryUserState toAdd = new XCDERootDirectoryUserState(user.getUsername(),user.getPath(),user.getCursor(),user.getBuild(),user.getTest());
      parentRegister.getRoot().makeChange(new XCDERootDirectoryUserStimulusAdd(toAdd));
      }
    //notify listeners
    for (Iterator i = changeListeners.iterator(); i.hasNext(); )
      ((IUserDataListListener)i.next()).addUser(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.