Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.NotImplementedException


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


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

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

  private void executeByteCodes(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 ByteCodes not implemented.");
  }
View Full Code Here

  private void executeVariableTableWithGeneric(ByteBuffer bb,
                                               DataOutputStream os)
      throws JdwpException
  {
    // We don't have generics yet
    throw new NotImplementedException(
      "Command SourceDebugExtension 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 Field implemented.");
  }
View Full Code Here

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

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

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

    throws JdwpException
  {
    // Going to have to implement a send queue somewhere and do this without
    // triggering events
    // Until then just don't implement
    throw new NotImplementedException(
      "Command VirtualMachine.HoldEvents not implemented");
  }
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.