Package net.sourceforge.fullsync

Examples of net.sourceforge.fullsync.ProfileListChangeListener


    return profileManager.getProfiles().toArray(new Profile[] {});
  }

  @Override
  public void addProfileListChangeListener(final RemoteProfileListChangeListenerInterface remotelistener) throws RemoteException {
    ProfileListChangeListener listener = new ProfileListChangeListener() {
      @Override
      public void profileChanged(Profile profile) {
        try {
          remotelistener.profileChanged(profile);
        }
View Full Code Here


    listenersMap.put(remotelistener, listener);
  }

  @Override
  public void removeProfileListChangeListener(RemoteProfileListChangeListenerInterface remoteListener) throws RemoteException {
    ProfileListChangeListener listener = (ProfileListChangeListener) listenersMap.remove(remoteListener);
    profileManager.removeProfilesChangeListener(listener);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.ProfileListChangeListener

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.