package javax.microedition.content;

import java.io.IOException;

public class Registry
{

 public static Registry getRegistry(String)
 {
  return null;
 }
 
 public static ContentHandlerServer getServer(String) throws ContentHandlerException
 {
  return null;
 }
 
 public ContentHandlerServer register(String, String[], String[], String[], ActionNameMap[], String, String[]) throws SecurityException, IllegalArgumentException, ClassNotFoundException, ContentHandlerException
 {
  return null;
 }
 
 public boolean unregister(String)
 {
  return false;
 }
 
 public String[] getTypes()
 {
  return null;
 }
 
 public String[] getIDs()
 {
  return null;
 }
 
 public String[] getActions()
 {
  return null;
 }
 
 public String[] getSuffixes()
 {
  return null;
 }
 
 public ContentHandler[] forType(String)
 {
  return null;
 }
 
 public ContentHandler[] forAction(String)
 {
  return null;
 }
 
 public ContentHandler[] forSuffix(String)
 {
  return null;
 }
 
 public ContentHandler forID(String, boolean)
 {
  return null;
 }
 
 public ContentHandler[] findHandler(Invocation) throws SecurityException, IOException, ContentHandlerException
 {
  return null;
 }
 
 public boolean invoke(Invocation, Invocation) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public boolean invoke(Invocation) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public boolean reinvoke(Invocation) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public Invocation getResponse(boolean)
 {
  return null;
 }
 
 public void cancelGetResponse()
 {
 }
 
 public void setListener(ResponseListener)
 {
 }
 
 public String getID()
 {
  return null;
 }
 
}