blob: 97c57b40706796b5c4e176033bae5443b348c11b [file] [log] [blame]
package org.eclipse.jdi.internal.jdwp;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/import java.io.*;
import org.eclipse.jdi.internal.VirtualMachineImpl;
/**
* This class implements the corresponding Java Debug Wire Protocol (JDWP) ID
* declared by the JDWP specification.
*
*/
public class JdwpThreadID extends JdwpObjectID {
/**
* Creates new JdwpID.
*/
public JdwpThreadID(VirtualMachineImpl vmImpl) {
super(vmImpl);
}
}