Examples of XVRAA


Examples of de.fu_berlin.inf.dpp.activities.serializable.XVRAA

    this.monitor.addListener(this);
  }

  @Override
  public void streamAppended(String text, IStreamMonitor monitor) {
    XVRAA a = new XVRAA(XVRActionType.CONSOLE_MESSAGE, text);
    SarosSessionListener.getInstance().send(a);
  }
View Full Code Here

Examples of de.fu_berlin.inf.dpp.activities.serializable.XVRAA

   
    this.sendPreLaunch();
  }

  private void sendPreLaunch() {
    this.sequencer.sendActivity(this.getParticipants(), new XVRActivityDataObject(this.local_user.getJID(), new XVRAA(XVRActionType.PRELAUNCH)));
  }
View Full Code Here

Examples of de.fu_berlin.inf.dpp.activities.serializable.XVRAA

   
    this.sendLaunch();
  }

  private void sendLaunch() {   
    this.sequencer.sendActivity(this.getParticipants(), new XVRActivityDataObject(this.local_user.getJID(), new XVRAA(XVRActionType.LAUNCH)));
  }
View Full Code Here

Examples of de.fu_berlin.inf.dpp.activities.serializable.XVRAA

   
    this.sendEnd();
  }

  private void sendEnd() {
    this.sequencer.sendActivity(this.getParticipants(), new XVRActivityDataObject(this.local_user.getJID(), new XVRAA(XVRActionType.END)));
  }
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.