1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 03:55:22 +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>
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:
&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>
</annotation>
</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
* Initial query to be sent to the target. This initial query can be obtained from the getQueries() method.
* @param query Initial query to be sent to the target. This initial query
* can be obtained from the getQueries() method.
*
* @param resource
* Resource containing the model to be populated with the results of the service discovery action.
* @param resource Resource containing the model to be populated with the
* results of the service discovery action.
*
* @param transport
* ITransport implementation of the transport to be used for the discovery action.
* @param transport ITransport implementation of the transport to be used
* for the discovery action.
*
* @return
* Job containing the service discovery action.
* @return Job containing the service discovery action.
*
* @see Job
* @see Resource

View file

@ -124,18 +124,14 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
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
* Query for the service discovery action
* @param address
* Address of the target device
* @param transportName
* 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
* @param query Query for the service discovery action
* @param address Address of the target device
* @param transportName 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) {
@ -189,16 +185,11 @@ public class ServiceDiscoveryWizardDisplayPage extends WizardPage {
/**
* Refresh the contents of the service discovery model
*
* @param query
* Query for the service discovery action
* @param address
* Address of the target device
* @param transportName
* 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
* @param query Query for the service discovery action
* @param address Address of the target device
* @param transportName 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)
{
@ -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
* Address of the host which services are queried
* @return
* Vector containing the <code>Service<code> selected
* @param address Address of the host which services are queried
* @return Vector containing the <code>Service<code> selected
*
* @see Service
*/