Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/jtag
diff options
context:
space:
mode:
authorJohn Cortell2010-05-06 18:53:25 +0000
committerJohn Cortell2010-05-06 18:53:25 +0000
commit2df2588754ea01ea0fa102b4c963a3646cb6e6e0 (patch)
tree21e0ab8ba7652d45cbe39b9f15e093ecffbb7ba7 /jtag
parent5e45479ea7c91a21d50261a4f245b6db3414ec6a (diff)
downloadorg.eclipse.cdt-2df2588754ea01ea0fa102b4c963a3646cb6e6e0.tar.gz
org.eclipse.cdt-2df2588754ea01ea0fa102b4c963a3646cb6e6e0.tar.xz
org.eclipse.cdt-2df2588754ea01ea0fa102b4c963a3646cb6e6e0.zip
Additional javadoc
Diffstat (limited to 'jtag')
-rw-r--r--jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java14
1 files changed, 11 insertions, 3 deletions
diff --git a/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java b/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java
index 4dcd7c62d5f..2da21294a2a 100644
--- a/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java
+++ b/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java
@@ -14,6 +14,8 @@ package org.eclipse.cdt.debug.gdbjtag.core.jtagdevice;
import java.util.Collection;
+import org.eclipse.cdt.debug.gdbjtag.core.IGDBJtagConnection;
+
/**
* Provides device specific debug commands for different hardware
* JTAG devices. See <code>DefaultGDBJtagDeviceImpl</code> for
@@ -77,7 +79,9 @@ public interface IGDBJtagDevice {
* commands that will connect to the device, or leave the
* collection as-is if that operation is either unsupported or
* not applicable
- * @deprecated use @see IGDBJtagConnection#doRemote
+ * @deprecated an implementor should adapt to IGDBJtagConnection instead of
+ * implementing this method (implementation should throw
+ * UnsupportedOperationException)
*/
public void doRemote(String ip, int port, Collection<String> commands);
@@ -152,7 +156,9 @@ public interface IGDBJtagDevice {
* Device specific default hostname of IP address
*
* @return default hostname of IP address
- * @deprecated use @see IGDBJtagConnection#getDetaultDeviceConnection
+ * @deprecated an implementor should adapt to IGDBJtagConnection instead of
+ * implementing this method (implementation should throw
+ * UnsupportedOperationException)
*/
public String getDefaultIpAddress();
@@ -160,7 +166,9 @@ public interface IGDBJtagDevice {
* Device specific default port number
*
* @return default port number
- * @deprecated use @see IGDBJtagConnection#getDetaultDeviceConnection
+ * @deprecated an implementor should adapt to IGDBJtagConnection instead of
+ * implementing this method (implementation should throw
+ * UnsupportedOperationException)
*/
public String getDefaultPortNumber();
}

Back to the top