blob: 9fe14938e0e19972b385100490206f1d9ff1455e [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 ByteTypeImpl extends PrimitiveTypeImpl implements ByteType {
/**
* Creates new instance.
*/
public ByteTypeImpl(VirtualMachineImpl vmImpl) {
super("ByteType", vmImpl, "byte" , "B");
}
/**
* @returns primitive type tag.
*/
public byte tag() {
return ByteValueImpl.tag;
}
/**
* @return Create a null value instance of the type.
*/
public Value createNullValue() {
return virtualMachineImpl().mirrorOf((byte)0);
}
}