blob: 34608fce7701735d268f2ef364799d17448553e7 [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 JdwpClassLoaderID extends JdwpObjectID {
/**
* Creates new JdwpID.
*/
public JdwpClassLoaderID(VirtualMachineImpl vmImpl) {
super(vmImpl);
}
}