blob: d80f388cbb0e3ba00bcb2f20d4f88e674bc44bc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.wst.jsdt.debug.internal.chrome.request;
import org.eclipse.wst.jsdt.debug.core.jsdi.ThreadReference;
import org.eclipse.wst.jsdt.debug.core.jsdi.request.ExceptionRequest;
import org.eclipse.wst.jsdt.debug.internal.chrome.jsdi.VMImpl;
/**
* {@link ExceptionRequest} impl
*
* @since 1.0
*/
public class ExceptionReqImpl extends EventReqImpl implements ExceptionRequest {
private ThreadReference thread = null;
/**
* Constructor
*
* @param vm
* @param enabled
*/
public ExceptionReqImpl(VMImpl vm, boolean enabled) {
super(vm, enabled);
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.core.jsdi.request.ExceptionRequest#addThreadFilter(org.eclipse.wst.jsdt.debug.core.jsdi.ThreadReference)
*/
public void addThreadFilter(ThreadReference thread) {
this.thread = thread;
}
/**
* Returns the underlying {@link ThreadReference} this request applies to
*
* @return the underlying {@link ThreadReference}
*/
public synchronized ThreadReference thread() {
return this.thread;
}
}