Examples of WhiteboardObjectList


Examples of org.openmeetings.app.conference.whiteboard.WhiteboardObjectList

    }
    return whiteboardObjectList;
  }
 
  public synchronized WhiteboardObject getWhiteBoardObjectListByRoomIdAndWhiteboard(Long room_id, Long whiteBoardId){
    WhiteboardObjectList whiteboardObjectList = whiteBoardObjectList.get(room_id);
    if (whiteboardObjectList == null) {
      whiteboardObjectList = new WhiteboardObjectList();
    }
    WhiteboardObject whiteboardObjects = whiteboardObjectList.getWhiteboardObjects().get(whiteBoardId);
    if (whiteboardObjects == null) {
      whiteboardObjects = new WhiteboardObject();
    }
    return whiteboardObjects;
  }
View Full Code Here

Examples of org.openmeetings.app.conference.whiteboard.WhiteboardObjectList

  public synchronized void setWhiteBoardObjectListRoomObj(Long room_id, WhiteboardObjectList whiteboardObjectList){
    whiteBoardObjectList.put(room_id, whiteboardObjectList);
  }
 
  public synchronized void setWhiteBoardObjectListRoomObjAndWhiteboardId(Long room_id, WhiteboardObject whiteboardObjects, Long whiteBoardId){
    WhiteboardObjectList whiteboardObjectList = whiteBoardObjectList.get(room_id);
    if (whiteboardObjectList == null) {
      whiteboardObjectList = new WhiteboardObjectList();
      whiteboardObjectList.setRoom_id(room_id);
    }
    whiteboardObjects.setWhiteBoardId(whiteBoardId);
    whiteboardObjectList.getWhiteboardObjects().put(whiteBoardId, whiteboardObjects);
    whiteBoardObjectList.put(room_id, whiteboardObjectList);
  }
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.