Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.NotImplementedException


      case JdwpConstants.Tag.CLASS_OBJECT:
        // All these cases are ObjectIds
        ObjectId oid = VMIdManager.getDefault().readObjectId(bb);
        return oid.getObject();
      default:
        throw new NotImplementedException("Tag " + tag
                                          + " is not implemented.");
      }
  }
View Full Code Here


          {
          case JdwpConstants.CommandSet.ArrayType.NEW_INSTANCE:
            executeNewInstance(bb, os);
            break;
          default:
            throw new NotImplementedException("Command " + command +
              " not found in ArrayType Command Set.");
        }
      }
    catch (IOException ex)
      {
View Full Code Here

            break;
          case JdwpConstants.CommandSet.ThreadReference.SUSPEND_COUNT:
            executeSuspendCount(bb, os);
            break;
          default:
            throw new NotImplementedException("Command " + command +
              " not found in Thread Reference Command Set.");
          }
      }
    catch (IOException ex)
      {
View Full Code Here

  private void executeOwnedMonitors(ByteBuffer bb, DataOutputStream os)
      throws JdwpException
  {
    // This command is optional, determined by VirtualMachines CapabilitiesNew
    // so we'll leave it till later to implement
    throw new NotImplementedException(
      "Command OwnedMonitors not implemented.");
  }
View Full Code Here

                                              DataOutputStream os)
      throws JdwpException
  {
    // This command is optional, determined by VirtualMachines CapabilitiesNew
    // so we'll leave it till later to implement
    throw new NotImplementedException(
      "Command CurrentContentedMonitors not implemented.");
  }
View Full Code Here

   * @throws JdwpException An exception will always be thrown
   */
  public boolean runCommand(ByteBuffer bb, DataOutputStream os, byte command)
    throws JdwpException
  {
    throw new NotImplementedException(
      "No commands for command set InterfaceType implemented.");
  }
View Full Code Here

            break;
          case JdwpConstants.CommandSet.ClassType.NEW_INSTANCE:
            executeNewInstance(bb, os);
            break;
          default:
            throw new NotImplementedException("Command " + command +
              " not found in ClassType Command Set.");
          }
      }
    catch (IOException ex)
      {
View Full Code Here

            break;
          case JdwpConstants.CommandSet.StackFrame.POP_FRAMES:
            executePopFrames(bb, os);
            break;
          default:
            throw new NotImplementedException("Command " + command +
            " not found in Stack Frame Command Set.");
          }
      }
    catch (IOException ex)
      {
View Full Code Here

  private void executePopFrames(ByteBuffer bb, DataOutputStream os)
      throws JdwpException
  {
    // This command is optional, determined by VirtualMachines CapabilitiesNew
    // so we'll leave it till later to implement
    throw new NotImplementedException("Command PopFrames not implemented.");
  }
View Full Code Here

            break;
          case JdwpConstants.CommandSet.ReferenceType.METHODS_WITH_GENERIC:
            executeMethodsWithGeneric(bb, os);
            break;
          default:
            throw new NotImplementedException("Command " + command +
              " not found in ReferenceType Command Set.");
          }
      }
    catch (IOException ex)
      {
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.