1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 12:05:21 +02:00

[cleanup] Avoid Javadoc param tag on separate line

This commit is contained in:
Martin Oberhuber 2008-03-16 20:18:30 +00:00
parent 3ea93ca975
commit dd3b95b989
3 changed files with 265 additions and 275 deletions

View file

@ -66,7 +66,7 @@
<documentation> <documentation>
Allows specifying semicolon separated multicast addresses to be used with specific transports in the format &lt;transport&gt;:&lt;address&gt; Allows specifying semicolon separated multicast addresses to be used with specific transports in the format &lt;transport&gt;:&lt;address&gt;
An example would be: An example would be:
&lt;code&gt;&quot;transportName1:address1;transportName2:address2;UDP:224.0.0.251&quot;&lt;code/&gt; &lt;code&gt;&quot;transportName1:address1;transportName2:address2;UDP:224.0.0.251&quot;&lt;/code&gt;
</documentation> </documentation>
</annotation> </annotation>
</attribute> </attribute>

View file

@ -29,19 +29,19 @@ public interface IProtocol {
/** /**
* Instantiates a Job to populate a model given an initial query, a resource containing the model to be populated and an ITranport implementation. * Instantiates a Job to populate a model given an initial query, a resource
* containing the model to be populated and an ITranport implementation.
* *
* @param query * @param query Initial query to be sent to the target. This initial query
* Initial query to be sent to the target. This initial query can be obtained from the getQueries() method. * can be obtained from the getQueries() method.
* *
* @param resource * @param resource Resource containing the model to be populated with the
* Resource containing the model to be populated with the results of the service discovery action. * results of the service discovery action.
* *
* @param transport * @param transport ITransport implementation of the transport to be used
* ITransport implementation of the transport to be used for the discovery action. * for the discovery action.
* *
* @return * @return Job containing the service discovery action.
* Job containing the service discovery action.
* *
* @see Job * @see Job
* @see Resource * @see Resource

View file

@ -124,18 +124,14 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
private Hashtable supportedServicesType = new Hashtable(); private Hashtable supportedServicesType = new Hashtable();
/** /**
* Constructor for the wizard page performing and displayin the results of the service discovery * Constructor for the wizard page performing and displayin the results of
* the service discovery
* *
* @param query * @param query Query for the service discovery action
* Query for the service discovery action * @param address Address of the target device
* @param address * @param transportName Name of the transport implementation to be used
* Address of the target device * @param protocolName Name of the protocol implementation to be used
* @param transportName * @param timeOut Timeout to be used in the transport
* Name of the transport implementation to be used
* @param protocolName
* Name of the protocol implementation to be used
* @param timeOut
* Timeout to be used in the transport
*/ */
public ServiceDiscoveryWizardDisplayPage(String query, String address, String transportName, String protocolName, int timeOut) { public ServiceDiscoveryWizardDisplayPage(String query, String address, String transportName, String protocolName, int timeOut) {
@ -189,16 +185,11 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
/** /**
* Refresh the contents of the service discovery model * Refresh the contents of the service discovery model
* *
* @param query * @param query Query for the service discovery action
* Query for the service discovery action * @param address Address of the target device
* @param address * @param transportName Name of the transport implementation to be used
* Address of the target device * @param protocolName Name of the protocol implementation to be used
* @param transportName * @param timeOut Timeout to be used in the transport
* Name of the transport implementation to be used
* @param protocolName
* Name of the protocol implementation to be used
* @param timeOut
* Timeout to be used in the transport
*/ */
public void update(String query, String address, String transportName, String protocolName, int timeOut) public void update(String query, String address, String transportName, String protocolName, int timeOut)
{ {
@ -597,12 +588,11 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
} }
/** /**
* Get the <code>Service<code> objects selected in the tree view from the specified host * Get the
* <code>Service<code> objects selected in the tree view from the specified host
* *
* @param address * @param address Address of the host which services are queried
* Address of the host which services are queried * @return Vector containing the <code>Service<code> selected
* @return
* Vector containing the <code>Service<code> selected
* *
* @see Service * @see Service
*/ */