Package org.apache.openmeetings.data.beans.rooms

Examples of org.apache.openmeetings.data.beans.rooms.RoomDTO


  public RoomSearchResult(SearchResult<Room> copy) {
    this.objectName = copy.getObjectName();
    this.records = copy.getRecords();
    this.result = new ArrayList<RoomDTO>(copy.getResult().size());
    for (Room r : copy.getResult()) {
      result.add(new RoomDTO(r));
    }
    this.errorId = copy.getErrorId();
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.data.beans.rooms.RoomDTO

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.