blob: b30f17bd1ce7de6a54266078ae5c9906791d5d77 [file] [log] [blame]
package org.eclipse.jdi.internal;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import com.sun.jdi.*;
import com.sun.jdi.connect.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
import org.eclipse.jdi.internal.connect.*;
import org.eclipse.jdi.internal.request.*;
import org.eclipse.jdi.internal.event.*;
import org.eclipse.jdi.internal.jdwp.*;
import org.eclipse.jdi.internal.spy.*;
import java.util.*;
import java.io.*;
/**
* this class implements the corresponding interfaces
* declared by the JDI specification. See the com.sun.jdi package
* for more information.
*
*/
public class VoidValueImpl extends ValueImpl implements VoidValue {
/** JDWP Tag. */
public static final byte tag = JdwpID.VOID_TAG;
/**
* Creates new instance.
*/
public VoidValueImpl(VirtualMachineImpl vmImpl) {
super("VoidValue", vmImpl);
}
/**
* @returns tag.
*/
public byte getTag() {
return tag;
}
/**
* @returns type of value.
*/
public Type type() {
return new VoidTypeImpl(virtualMachineImpl());
}
/**
* @return Returns true if two values are equal.
* @see java.lang.Object#equals(Object)
*/
public boolean equals(Object object) {
return object != null && object.getClass().equals(this.getClass());
}
/**
* @return Returns a has code for this object.
* @see java.lang.Object#hashCode
*/
public int hashCode() {
return 0;
}
/**
* Writes value without value tag.
*/
public void write(MirrorImpl target, DataOutputStream out) throws IOException {
// Nothing to write.
}
/**
* @return Returns description of Mirror object.
*/
public String toString() {
return "(void)";
}
}