Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java
index 3f4775b9b..9662312e6 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/event/VMStartEventImpl.java
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.jdi.internal.event;
-
import java.io.DataInputStream;
import java.io.IOException;
@@ -22,10 +21,9 @@ import org.eclipse.jdi.internal.request.RequestID;
import com.sun.jdi.event.VMStartEvent;
/**
- * 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 VMStartEventImpl extends EventImpl implements VMStartEvent {
/** Jdwp Event Kind. */
@@ -37,14 +35,16 @@ public class VMStartEventImpl extends EventImpl implements VMStartEvent {
private VMStartEventImpl(VirtualMachineImpl vmImpl, RequestID requestID) {
super("VMStartEvent", 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 VMStartEventImpl read(MirrorImpl target, RequestID requestID, DataInputStream dataInStream) throws IOException {
+ public static VMStartEventImpl read(MirrorImpl target, RequestID requestID,
+ DataInputStream dataInStream) throws IOException {
VirtualMachineImpl vmImpl = target.virtualMachineImpl();
VMStartEventImpl event = new VMStartEventImpl(vmImpl, requestID);
event.fThreadRef = ThreadReferenceImpl.read(target, dataInStream);
return event;
- }
+ }
}

Back to the top