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