Package org.eclipse.jdi.internal.jdwp

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


   * ID is unknown a newly created ReferenceTypeImpl.
   */
  public static ClassTypeImpl read(MirrorImpl target, DataInputStream in)
      throws IOException {
    VirtualMachineImpl vmImpl = target.virtualMachineImpl();
    JdwpClassID ID = new JdwpClassID(vmImpl);
    ID.read(in);
    if (target.fVerboseWriter != null)
      target.fVerboseWriter.println("classType", ID.value()); //$NON-NLS-1$

    if (ID.isNull())
      return null;

    ClassTypeImpl mirror = (ClassTypeImpl) vmImpl.getCachedMirror(ID);
    if (mirror == null) {
      mirror = new ClassTypeImpl(vmImpl, ID);
View Full Code Here


   */
  public static ClassTypeImpl readWithSignature(MirrorImpl target,
      boolean withGenericSignature, DataInputStream in)
      throws IOException {
    VirtualMachineImpl vmImpl = target.virtualMachineImpl();
    JdwpClassID ID = new JdwpClassID(vmImpl);
    ID.read(in);
    if (target.fVerboseWriter != null)
      target.fVerboseWriter.println("classType", ID.value()); //$NON-NLS-1$

    String signature = target.readString("signature", in); //$NON-NLS-1$
    String genericSignature = null;
    if (withGenericSignature) {
      genericSignature = target.readString("generic signature", in); //$NON-NLS-1$
    }
    if (ID.isNull())
      return null;

    ClassTypeImpl mirror = (ClassTypeImpl) vmImpl.getCachedMirror(ID);
    if (mirror == null) {
      mirror = new ClassTypeImpl(vmImpl, ID);
View Full Code Here

TOP

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

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.