KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jdi > request > EventRequest


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package com.sun.jdi.request;
12
13
14 import com.sun.jdi.Mirror;
15
16 public interface EventRequest extends Mirror {
17     public static final int SUSPEND_NONE = 0;
18     public static final int SUSPEND_EVENT_THREAD = 1;
19     public static final int SUSPEND_ALL = 2;
20     public void addCountFilter(int arg1) throws InvalidRequestStateException;
21     public void disable();
22     public void enable();
23     public Object JavaDoc getProperty(Object JavaDoc key);
24     public boolean isEnabled();
25     public void putProperty(Object JavaDoc key, Object JavaDoc value);
26     public void setEnabled(boolean arg1);
27     public void setSuspendPolicy(int arg1);
28     public int suspendPolicy();
29 }
30
Popular Tags