Package net.sf.fmj.gui.controlpanelfactory

Source Code of net.sf.fmj.gui.controlpanelfactory.SwingLookControlPanelFactory

package net.sf.fmj.gui.controlpanelfactory;

import java.awt.Component;

import javax.media.Player;

import net.sf.fmj.gui.controlpanel.SwingLookControlPanel;

/**
*
* @author Ken Larson
*
*/
public class SwingLookControlPanelFactory implements ControlPanelFactory
{

  public Component getControlPanelComponent(Player p)
  {
        return new SwingLookControlPanel(p);       
  }

}
TOP

Related Classes of net.sf.fmj.gui.controlpanelfactory.SwingLookControlPanelFactory

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.