Package org.openmeetings.server.beans.messages

Examples of org.openmeetings.server.beans.messages.ScreenSharingNewFrame


  }

  public synchronized void sendScreenSharingFrame(ServerFrameBean serverFrameBean) {
    try {
     
      ScreenSharingNewFrame screenSharingNewFrame = new ScreenSharingNewFrame();
      screenSharingNewFrame.setS(serverFrameBean.getPublicSID());
      screenSharingNewFrame.setX(serverFrameBean.getXValue());
      screenSharingNewFrame.setY(serverFrameBean.getYValue());
      screenSharingNewFrame.setH(serverFrameBean.getHeight());
      screenSharingNewFrame.setW(serverFrameBean.getWidth());
       
      String publicSID = serverFrameBean.getPublicSID();
     
      IScope globalScope = getContext().getGlobalScope();
      IScope webAppKeyScope = globalScope.getScope(ScopeApplicationAdapter.webAppRootKey);
View Full Code Here


         
          screenSharingMessage.setL(new LinkedList<ScreenSharingNewFrame>());
         
          for (ServerFrameBean serverFrameBean : serverSharingSessionBean.getServerFrameBeans()) {
           
            ScreenSharingNewFrame screenSharingNewFrame = new ScreenSharingNewFrame();
            screenSharingNewFrame.setX(serverFrameBean.getXValue());
            screenSharingNewFrame.setY(serverFrameBean.getYValue());
            screenSharingNewFrame.setH(serverFrameBean.getHeight());
            screenSharingNewFrame.setW(serverFrameBean.getWidth());
           
            screenSharingMessage.getL().add(screenSharingNewFrame);
           
          }
         
View Full Code Here

     
      screenSharingMessage.setL(new LinkedList<ScreenSharingNewFrame>());
     
      for (ServerFrameBean serverFrameBean : serverSharingSessionBean.getServerFrameBeans()) {
       
        ScreenSharingNewFrame screenSharingNewFrame = new ScreenSharingNewFrame();
        screenSharingNewFrame.setX(serverFrameBean.getXValue());
        screenSharingNewFrame.setY(serverFrameBean.getYValue());
        screenSharingNewFrame.setH(serverFrameBean.getHeight());
        screenSharingNewFrame.setW(serverFrameBean.getWidth());
       
        screenSharingMessage.getL().add(screenSharingNewFrame);
       
      }
     
View Full Code Here

TOP

Related Classes of org.openmeetings.server.beans.messages.ScreenSharingNewFrame

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.