1
0
Fork 0
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:
Martin Oberhuber 2006-12-15 12:02:15 +00:00
parent 060b6cdfea
commit 3b45cdf804

View file

@ -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;
/**