1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Additional javadoc

This commit is contained in:
John Cortell 2010-05-06 18:53:25 +00:00
parent 5e45479ea7
commit 2df2588754

View file

@ -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();
}