blob: 336fe87717771cbacd948514905c5b9a24c3c108 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdi.internal;
import com.sun.jdi.BooleanType;
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 BooleanTypeImpl extends PrimitiveTypeImpl implements BooleanType {
/**
* Creates new instance.
* @param vmImpl the VM
*/
public BooleanTypeImpl(VirtualMachineImpl vmImpl) {
super("BooleanType", vmImpl, "boolean", "Z"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
/**
* @returns primitive type tag.
*/
@Override
public byte tag() {
return BooleanValueImpl.tag;
}
/**
* @return Create a null value instance of the type.
*/
@Override
public Value createNullValue() {
return virtualMachineImpl().mirrorOf(false);
}
}