mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
Fix Javadoc errors
This commit is contained in:
parent
060b6cdfea
commit
3b45cdf804
1 changed files with 7 additions and 5 deletions
|
@ -6,10 +6,13 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||||
|
* Martin Oberhuber (Wind River) - fix javadoc errors
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.tm.discovery.transport;
|
package org.eclipse.tm.discovery.transport;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for service discovery transports
|
* Interface for service discovery transports
|
||||||
|
@ -20,11 +23,10 @@ public interface ITransport {
|
||||||
/**
|
/**
|
||||||
* Handles sending data
|
* Handles sending data
|
||||||
*
|
*
|
||||||
* @param data
|
* @param packet Data packet to be sent.
|
||||||
* Data packet to be sent.
|
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public abstract void send(byte[] packet) throws Exception;
|
public abstract void send(byte[] packet) throws IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles receiving data
|
* Handles receiving data
|
||||||
|
@ -35,7 +37,7 @@ public interface ITransport {
|
||||||
* Address of the replying device.
|
* Address of the replying device.
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public abstract String receive(byte[] packet) throws Exception;
|
public abstract String receive(byte[] packet) throws IOException;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue