* Writes representation of null referenceType.
*/
public static void writeNull(MirrorImpl target, DataOutputStream out)
throws IOException {
// create null id
JdwpReferenceTypeID ID = new JdwpReferenceTypeID(
target.virtualMachineImpl());
ID.write(out);
if (target.fVerboseWriter != null)
target.fVerboseWriter.println("referenceType", ID.value()); //$NON-NLS-1$
}