package javax.microedition.amms;

import javax.microedition.media.Control;
import javax.microedition.media.MediaException;

public class GlobalManager
{

 public static EffectModule createEffectModule() throws MediaException
 {
  return null;
 }
 
 public static MediaProcessor createMediaProcessor(String) throws MediaException
 {
  return null;
 }
 
 public static SoundSource3D createSoundSource3D() throws MediaException
 {
  return null;
 }
 
 public static Control getControl(String)
 {
  return null;
 }
 
 public static Control[] getControls()
 {
  return null;
 }
 
 public static Spectator getSpectator() throws MediaException
 {
  return null;
 }
 
 public static String[] getSupportedMediaProcessorInputTypes()
 {
  return null;
 }
 
 public static String[] getSupportedSoundSource3DPlayerTypes()
 {
  return null;
 }
 
}