blob: 746b6ac882c3fd98a880877e944723c7bbeb26d0 [file] [log] [blame]
package org.eclipse.jdi.internal.jdwp;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdi.internal.VirtualMachineImpl;
/**
* This class implements the corresponding Java Debug Wire Protocol (JDWP) ID
* declared by the JDWP specification.
*
*/
public class JdwpFrameID extends JdwpID {
/**
* Creates new JdwpID.
*/
public JdwpFrameID(VirtualMachineImpl vmImpl) {
super(vmImpl);
}
/**
* @return Returns VM specific size of ID.
*/
public int getSize() {
return fVirtualMachine.frameIDSize();
}
/**
* @return Returns true if ID is null.
*/
public boolean isNull() {
return false;
}
}