blob: 3327c85467f23cb1d34ca8b02ffe31eacb156e90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdi.internal;
import com.sun.jdi.IntegerType;
import com.sun.jdi.Value;
/**
* this class implements the corresponding interfaces
* declared by the JDI specification. See the com.sun.jdi package
* for more information.
*
*/
public class IntegerTypeImpl extends PrimitiveTypeImpl implements IntegerType {
/**
* Creates new instance.
*/
public IntegerTypeImpl(VirtualMachineImpl vmImpl) {
super("IntegerType", vmImpl, "int" , "I"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
/**
* @returns primitive type tag.
*/
public byte tag() {
return IntegerValueImpl.tag;
}
/**
* @return Create a null value instance of the type.
*/
public Value createNullValue() {
return virtualMachineImpl().mirrorOf(0);
}
}