Exemplo n.º 1
0
 /** Writes null value with value tag. */
 public static void writeNullWithTag(MirrorImpl target, DataOutputStream out) throws IOException {
   target.writeByte(ObjectReferenceImpl.tag, "tag", JdwpID.tagMap(), out); // $NON-NLS-1$
   writeNull(target, out);
 }
Exemplo n.º 2
0
 /** Writes value with value tag. */
 public void writeWithTag(MirrorImpl target, DataOutputStream out) throws IOException {
   target.writeByte(getTag(), "tag", JdwpID.tagMap(), out); // $NON-NLS-1$
   write(target, out);
 }