From 2df2588754ea01ea0fa102b4c963a3646cb6e6e0 Mon Sep 17 00:00:00 2001 From: John Cortell Date: Thu, 6 May 2010 18:53:25 +0000 Subject: Additional javadoc --- .../cdt/debug/gdbjtag/core/jtagdevice/IGDBJtagDevice.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'jtag') 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 DefaultGDBJtagDeviceImpl 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 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(); } -- cgit v1.2.3