blob: 9bd37b0c8938ce578aa56d367ab4465620c2b370 [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.request;
import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.ExceptionEventImpl;
import com.sun.jdi.ReferenceType;
import com.sun.jdi.request.ExceptionRequest;
/**
* This class implements the corresponding interfaces
* declared by the JDI specification. See the com.sun.jdi package
* for more information.
*
*/
public class ExceptionRequestImpl extends EventRequestImpl implements ExceptionRequest {
/**
* Creates new EventRequestManager.
*/
public ExceptionRequestImpl(VirtualMachineImpl vmImpl) {
super("ExceptionRequest", vmImpl); //$NON-NLS-1$
}
/**
* Returns exception type for which exception events are requested.
*/
public ReferenceType exception() {
return ((EventRequestImpl.ExceptionFilter)fExceptionFilters.get(0)).fException;
}
/**
* @return Returns true if caught exceptions will be reported.
*/
public boolean notifyCaught() {
return ((EventRequestImpl.ExceptionFilter)fExceptionFilters.get(0)).fNotifyCaught;
}
/**
* @return Returns true if uncaught exceptions will be reported.
*/
public boolean notifyUncaught() {
return ((EventRequestImpl.ExceptionFilter)fExceptionFilters.get(0)).fNotifyUncaught;
}
/**
* @return Returns JDWP EventKind.
*/
protected final byte eventKind() {
return ExceptionEventImpl.EVENT_KIND;
}
}