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

View file

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