Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java')
-rw-r--r--org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java b/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java
index 1b77a35d1..c61a5ee07 100644
--- a/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java
+++ b/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/connect/spi/Connection.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2005 IBM Corporation and others.
+ * Copyright (c) 2004, 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
@@ -11,10 +11,15 @@
package com.sun.jdi.connect.spi;
import java.io.IOException;
-
+/**
+ * See http://docs.oracle.com/javase/6/docs/jdk/api/jpda/jdi/com/sun/jdi/connect/spi/Connection.html
+ */
public abstract class Connection {
public abstract void close() throws IOException;
+
public abstract boolean isOpen();
+
public abstract byte[] readPacket() throws IOException;
+
public abstract void writePacket(byte[] arg1) throws IOException;
}

Back to the top