Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java
index 2387cfabb..36ff4d4e1 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/StepEventImpl.java
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.jdi.internal.event;
-
import java.io.DataInputStream;
import java.io.IOException;
@@ -21,10 +20,9 @@ import org.eclipse.jdi.internal.request.RequestID;
import com.sun.jdi.event.StepEvent;
/**
- * 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 StepEventImpl extends LocatableEventImpl implements StepEvent {
/** Jdwp Event Kind. */
@@ -36,14 +34,16 @@ public class StepEventImpl extends LocatableEventImpl implements StepEvent {
private StepEventImpl(VirtualMachineImpl vmImpl, RequestID requestID) {
super("StepEvent", vmImpl, requestID); //$NON-NLS-1$
}
-
+
/**
- * @return Creates, reads and returns new EventImpl, of which requestID has already been read.
+ * @return Creates, reads and returns new EventImpl, of which requestID has
+ * already been read.
*/
- public static StepEventImpl read(MirrorImpl target, RequestID requestID, DataInputStream dataInStream) throws IOException {
+ public static StepEventImpl read(MirrorImpl target, RequestID requestID,
+ DataInputStream dataInStream) throws IOException {
VirtualMachineImpl vmImpl = target.virtualMachineImpl();
StepEventImpl event = new StepEventImpl(vmImpl, requestID);
event.readThreadAndLocation(target, dataInStream);
return event;
- }
+ }
}

Back to the top