package javax.microedition.content;

import java.io.IOException;

public class Registry
{

 public static Registry getRegistry(String string_1)
 {
  return null;
 }
 
 public static ContentHandlerServer getServer(String string_1) throws ContentHandlerException
 {
  return null;
 }
 
 public ContentHandlerServer register(String string_1, String[] strings_1, String[] strings_2, String[] strings_3, ActionNameMap[] actionnamemaps_1, String string_2, String[] strings_4) throws SecurityException, IllegalArgumentException, ClassNotFoundException, ContentHandlerException
 {
  return null;
 }
 
 public boolean unregister(String string_1)
 {
  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 string_1)
 {
  return null;
 }
 
 public ContentHandler[] forAction(String string_1)
 {
  return null;
 }
 
 public ContentHandler[] forSuffix(String string_1)
 {
  return null;
 }
 
 public ContentHandler forID(String string_1, boolean boolean_1)
 {
  return null;
 }
 
 public ContentHandler[] findHandler(Invocation invocation_1) throws SecurityException, IOException, ContentHandlerException
 {
  return null;
 }
 
 public boolean invoke(Invocation invocation_1, Invocation invocation_2) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public boolean invoke(Invocation invocation_1) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public boolean reinvoke(Invocation invocation_1) throws SecurityException, IllegalArgumentException, IOException, ContentHandlerException
 {
  return false;
 }
 
 public Invocation getResponse(boolean boolean_1)
 {
  return null;
 }
 
 public void cancelGetResponse()
 {
 }
 
 public void setListener(ResponseListener responselistener_1)
 {
 }
 
 public String getID()
 {
  return null;
 }
 
}