Package org.waveprotocol.box.profile.impl.ProfileResponseImpl

Examples of org.waveprotocol.box.profile.impl.ProfileResponseImpl.FetchedProfileImpl


  @Override
  public void copyFrom(ProfileResponse message) {
    clearProfiles();
    for (FetchedProfile field : message.getProfiles()) {
      addProfiles(new FetchedProfileImpl(field));
    }
  }
View Full Code Here


    }
  }

  @Override
  public FetchedProfileImpl getProfiles(int n) {
    return new FetchedProfileImpl(profiles.get(n));
  }
View Full Code Here

    return new FetchedProfileImpl(profiles.get(n));
  }

  @Override
  public void setProfiles(int n, FetchedProfile message) {
    this.profiles.set(n, new FetchedProfileImpl(message));
  }
View Full Code Here

    return profiles.size();
  }

  @Override
  public void addProfiles(FetchedProfile message) {
    this.profiles.add(new FetchedProfileImpl(message));
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.box.profile.impl.ProfileResponseImpl.FetchedProfileImpl

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.