Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java
index 7b3137110..6adff9b4f 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/AccessWatchpointRequestImpl.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 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
@@ -10,21 +10,21 @@
*******************************************************************************/
package org.eclipse.jdi.internal.request;
-
import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.AccessWatchpointEventImpl;
import com.sun.jdi.request.AccessWatchpointRequest;
/**
- * this class implements the corresponding interfaces
- * declared by the JDI specification. See the com.sun.jdi package
- * for more information.
- *
+ * this class implements the corresponding interfaces declared by the JDI
+ * specification. See the com.sun.jdi package for more information.
+ *
*/
-public class AccessWatchpointRequestImpl extends WatchpointRequestImpl implements AccessWatchpointRequest {
+public class AccessWatchpointRequestImpl extends WatchpointRequestImpl
+ implements AccessWatchpointRequest {
/**
* Creates new AccessWatchpointRequest.
+ * @param vmImpl the VM
*/
public AccessWatchpointRequestImpl(VirtualMachineImpl vmImpl) {
super("AccessWatchpointRequest", vmImpl); //$NON-NLS-1$
@@ -33,6 +33,7 @@ public class AccessWatchpointRequestImpl extends WatchpointRequestImpl implement
/**
* @return Returns JDWP EventKind.
*/
+ @Override
protected final byte eventKind() {
return AccessWatchpointEventImpl.EVENT_KIND;
}

Back to the top