Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.NotImplementedException


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


  private void executeSignatureWithGeneric(ByteBuffer bb, DataOutputStream os)
    throws JdwpException, IOException
  {
    // We don't have generics yet
    throw new NotImplementedException(
      "Command SourceDebugExtension not implemented.");
  }
View Full Code Here

  private void executeFieldWithGeneric(ByteBuffer bb, DataOutputStream os)
    throws JdwpException, IOException
  {
    // We don't have generics yet
    throw new NotImplementedException(
      "Command SourceDebugExtension not implemented.");
  }
View Full Code Here

  private void executeMethodsWithGeneric(ByteBuffer bb, DataOutputStream os)
    throws JdwpException, IOException
  {
    // We don't have generics yet
    throw new NotImplementedException(
      "Command SourceDebugExtension not implemented.");
  }
View Full Code Here

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

  private void executeMonitorInfo(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 ExecuteMonitorInfo not implemented.");

  }
View Full Code Here

   * @throws NotImplementedException if used
   */
  public ConditionalFilter (Object conditional)
    throws NotImplementedException
  {
    throw new NotImplementedException ("conditional filters");
  }
View Full Code Here

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

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

          case JdwpConstants.ModKind.INSTANCE_ONLY:
            ObjectId oid = idMan.readObjectId(bb);
            filter = new InstanceOnlyFilter(oid);
            break;
          default:
            throw new NotImplementedException("modKind " + modKind
                                              + " is not implemented.");
          }
        eventReq.addFilter(filter);
      }
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.