Package net.sf.fmj.ui.wizards

Examples of net.sf.fmj.ui.wizards.RTPTransmitWizard


    throw new RuntimeException("No parent frame");
  }
 
  public void onTransmitRTP()
  {
    RTPTransmitWizard w = new RTPTransmitWizard(getParentFrame(), prefs.rtpTransmitWizardConfig);
    boolean result = w.run();
   
    //  store preferences if successful
    if (result)
    {
      containerPlayer.setRealizedStartedProcessor(w.getResult().processor);
     
      prefs.rtpTransmitWizardConfig = w.getConfig()// TODO: this is the same object, we need to copy somewhere.
      savePrefs();
    }
   
  }
View Full Code Here

TOP

Related Classes of net.sf.fmj.ui.wizards.RTPTransmitWizard

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.