Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.NotImplementedException


  // Opposite of executeHoldEvents
  private void executeReleaseEvents(ByteBuffer bb, DataOutputStream os)
    throws JdwpException
  {
    throw new NotImplementedException(
      "Command VirtualMachine.ReleaseEvents not implemented");
  }
View Full Code Here


  private void executeSetDefaultStratum(ByteBuffer bb, DataOutputStream os)
    throws JdwpException
  {
    // Optional command, don't implement
    throw new NotImplementedException(
      "Command VirtualMachine.SetDefaultStratum not implemented");
  }
View Full Code Here

  private void executeAllClassesWithGeneric(ByteBuffer bb, DataOutputStream os)
    throws JdwpException
  {
    // We don't handle generics
    throw new NotImplementedException(
      "Command VirtualMachine.AllClassesWithGeneric not implemented");
  }
View Full Code Here

public static VMMethod[] getAllClassMethods(Class klass)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("getAllClassMethods");
}
View Full Code Here

public static ArrayList getLoadRequests(ClassLoader cl)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("getLoadRequests");
}
View Full Code Here

public static MethodResult executeMethod(Object obj, Thread thread,
   Class klass, Method method, Object[] values, boolean nonVirtual)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("executeMethod");
}
View Full Code Here

public static void registerEvent(EventRequest request)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("registerEvent");
}
View Full Code Here

public static void unregisterEvent(EventRequest request)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("unregisterEvent");
}
View Full Code Here

public static void clearEvents(byte kind)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("clearEvents");
}
View Full Code Here

private static VMFrame[] getFrames(Thread thread)
  throws JdwpException
{
  /* not implemented */
  throw new NotImplementedException("getFrames");
}
View Full Code Here

TOP

Related Classes of gnu.classpath.jdwp.exception.NotImplementedException

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.