mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
Fix Javadoc errors
This commit is contained in:
parent
060b6cdfea
commit
3b45cdf804
1 changed files with 7 additions and 5 deletions
|
@ -5,11 +5,14 @@
|
|||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* 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;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
|
||||
/**
|
||||
* Interface for service discovery transports
|
||||
|
@ -20,11 +23,10 @@ public interface ITransport {
|
|||
/**
|
||||
* Handles sending data
|
||||
*
|
||||
* @param data
|
||||
* Data packet to be sent.
|
||||
* @param packet Data packet to be sent.
|
||||
* @throws IOException
|
||||
*/
|
||||
public abstract void send(byte[] packet) throws Exception;
|
||||
public abstract void send(byte[] packet) throws IOException;
|
||||
|
||||
/**
|
||||
* Handles receiving data
|
||||
|
@ -35,7 +37,7 @@ public interface ITransport {
|
|||
* Address of the replying device.
|
||||
* @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