blob: e9e2a9319d81e2aa86e1600fbffe7d4d15d6f595 [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 JdwpInterfaceID extends JdwpReferenceTypeID {
/**
* Creates new JdwpID.
*/
public JdwpInterfaceID(VirtualMachineImpl vmImpl) {
super(vmImpl);
}
}