Package org.eclipse.jdi.internal.jdwp

Examples of org.eclipse.jdi.internal.jdwp.JdwpStringID


   * @return Reads JDWP representation and returns new instance.
   */
  public static StringReferenceImpl read(MirrorImpl target, DataInputStream in)
      throws IOException {
    VirtualMachineImpl vmImpl = target.virtualMachineImpl();
    JdwpStringID ID = new JdwpStringID(vmImpl);
    ID.read(in);
    if (target.fVerboseWriter != null)
      target.fVerboseWriter.println("stringReference", ID.value()); //$NON-NLS-1$

    if (ID.isNull())
      return null;

    StringReferenceImpl mirror = new StringReferenceImpl(vmImpl, ID);
    return mirror;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdi.internal.jdwp.JdwpStringID

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.