blob: 7997ebb7e71e0cfaf71897ea7e302cdf30422319 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi.request;
import com.sun.jdi.Mirror;
public interface EventRequest extends Mirror {
public static final int SUSPEND_NONE = 0;
public static final int SUSPEND_EVENT_THREAD = 1;
public static final int SUSPEND_ALL = 2;
public void addCountFilter(int arg1) throws InvalidRequestStateException;
public void disable();
public void enable();
public boolean isEnabled();
public void setEnabled(boolean arg1);
public void setSuspendPolicy(int arg1);
public int suspendPolicy();
public Object getProperty(Object key);
public void putProperty(Object key, Object value);
}