From 3b45cdf8041b62ca43c46bbae5f158b7ac6f47d1 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Fri, 15 Dec 2006 12:02:15 +0000 Subject: [PATCH] Fix Javadoc errors --- .../eclipse/tm/discovery/transport/ITransport.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/discovery/org.eclipse.tm.discovery.engine/src/org/eclipse/tm/discovery/transport/ITransport.java b/discovery/org.eclipse.tm.discovery.engine/src/org/eclipse/tm/discovery/transport/ITransport.java index 0d5903a5910..52dd1e6237a 100644 --- a/discovery/org.eclipse.tm.discovery.engine/src/org/eclipse/tm/discovery/transport/ITransport.java +++ b/discovery/org.eclipse.tm.discovery.engine/src/org/eclipse/tm/discovery/transport/ITransport.java @@ -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; /**