Package net.sf.fmj.ui.wizards

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


   
  }
 
  public void onTranscode()
  {
    TranscodeWizard w = new TranscodeWizard(getParentFrame(), prefs.transcodeWizardConfig);
    boolean result = w.run();
   
    //  store preferences if successful
    if (result)
    {
      containerPlayer.setRealizedStartedProcessor(w.getResult().processor);
     
      prefs.transcodeWizardConfig = 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.TranscodeWizard

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.