KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdi > internal > event > AccessWatchpointEventImpl


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 org.eclipse.jdi.internal.event;
12
13
14 import java.io.DataInputStream JavaDoc;
15 import java.io.IOException JavaDoc;
16
17 import org.eclipse.jdi.internal.MirrorImpl;
18 import org.eclipse.jdi.internal.VirtualMachineImpl;
19 import org.eclipse.jdi.internal.request.RequestID;
20
21 import com.sun.jdi.event.AccessWatchpointEvent;
22
23 /**
24  * this class implements the corresponding interfaces
25  * declared by the JDI specification. See the com.sun.jdi package
26  * for more information.
27  *
28  */

29 public class AccessWatchpointEventImpl extends WatchpointEventImpl implements AccessWatchpointEvent {
30     /** Jdwp Event Kind. */
31     public static final byte EVENT_KIND = EVENT_FIELD_ACCESS;
32     
33     /**
34      * Creates new AccessWatchpointEventImpl.
35      */

36     protected AccessWatchpointEventImpl(VirtualMachineImpl vmImpl, RequestID requestID) {
37         super("AccessWatchpointEvent", vmImpl, requestID); //$NON-NLS-1$
38
}
39
40     /**
41      * @return Creates, reads and returns new EventImpl, of which requestID has already been read.
42      */

43     public static WatchpointEventImpl read(MirrorImpl target, RequestID requestID, DataInputStream JavaDoc dataInStream) throws IOException JavaDoc {
44         VirtualMachineImpl vmImpl = target.virtualMachineImpl();
45         AccessWatchpointEventImpl event = new AccessWatchpointEventImpl(vmImpl, requestID);
46         event.readWatchpointEventFields(target, dataInStream);
47         return event;
48     }
49 }
50
Popular Tags