mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 22:35:43 +02:00
Fix more obvious javadoc warnings (707 remaining)
This commit is contained in:
parent
06b4d2269c
commit
1003ed6e14
10 changed files with 26 additions and 26 deletions
|
@ -67,7 +67,7 @@ public class DaytimeSubsystemConfiguration extends ServiceSubSystemConfiguration
|
|||
/**
|
||||
* Instantiate and return an instance of OUR subystem.
|
||||
* Do not populate it yet though!
|
||||
* @see org.eclipse.rse.core.subsystems.impl.SubSystemFactoryImpl#createSubSystemInternal(IHost)
|
||||
* @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#createSubSystemInternal(IHost)
|
||||
*/
|
||||
public ISubSystem createSubSystemInternal(IHost host) {
|
||||
IConnectorService connectorService = getConnectorService(host);
|
||||
|
|
|
@ -60,63 +60,63 @@ public class RemoteSearchResultConfiguration implements IHostSearchResultConfigu
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#setParentResultSet(org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultSet)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#setParentResultSet(org.eclipse.rse.services.search.IHostSearchResultSet)
|
||||
*/
|
||||
public void setParentResultSet(IHostSearchResultSet resultSet) {
|
||||
this.parentResultSet = resultSet;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getParentResultSet()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getParentResultSet()
|
||||
*/
|
||||
public IHostSearchResultSet getParentResultSet() {
|
||||
return parentResultSet;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#setSearchTarget(java.lang.Object)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#setSearchTarget(java.lang.Object)
|
||||
*/
|
||||
public void setSearchTarget(Object searchObject) {
|
||||
this.searchTarget = searchObject;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getSearchTarget()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getSearchTarget()
|
||||
*/
|
||||
public Object getSearchTarget() {
|
||||
return searchTarget;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#setSearchString(org.eclipse.rse.services.clientserver.SystemSearchString)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#setSearchString(org.eclipse.rse.services.clientserver.SystemSearchString)
|
||||
*/
|
||||
public void setSearchString(SystemSearchString string) {
|
||||
this.searchString = string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getSearchString()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getSearchString()
|
||||
*/
|
||||
public SystemSearchString getSearchString() {
|
||||
return searchString;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#addResult(java.lang.Object)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#addResult(java.lang.Object)
|
||||
*/
|
||||
public void addResult(Object result) {
|
||||
results.add(result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#removeResult(java.lang.Object)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#removeResult(java.lang.Object)
|
||||
*/
|
||||
public void removeResult(Object result) {
|
||||
results.remove(result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#removeAndAddResult(java.lang.Object, java.lang.Object)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#removeAndAddResult(java.lang.Object, java.lang.Object)
|
||||
*/
|
||||
public void removeAndAddResult(Object oldResult, Object newResult) {
|
||||
results.remove(oldResult);
|
||||
|
@ -124,7 +124,7 @@ public class RemoteSearchResultConfiguration implements IHostSearchResultConfigu
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getResults()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getResults()
|
||||
*/
|
||||
public Object[] getResults() {
|
||||
return results.toArray();
|
||||
|
@ -136,28 +136,28 @@ public class RemoteSearchResultConfiguration implements IHostSearchResultConfigu
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getResultsSize()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getResultsSize()
|
||||
*/
|
||||
public int getResultsSize() {
|
||||
return results.size();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#removeResults()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#removeResults()
|
||||
*/
|
||||
public void removeResults() {
|
||||
results.removeAllElements();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#setStatus(int)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#setStatus(int)
|
||||
*/
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getStatus()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getStatus()
|
||||
*/
|
||||
public int getStatus() {
|
||||
return status;
|
||||
|
@ -165,7 +165,7 @@ public class RemoteSearchResultConfiguration implements IHostSearchResultConfigu
|
|||
|
||||
/**
|
||||
* Does nothing.
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#cancel()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#cancel()
|
||||
*/
|
||||
public void cancel() {
|
||||
|
||||
|
@ -176,7 +176,7 @@ public class RemoteSearchResultConfiguration implements IHostSearchResultConfigu
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#dispose()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#dispose()
|
||||
*/
|
||||
public void dispose() {
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public class UniversalSearchResultConfigurationImpl extends RemoteSearchResultCo
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#cancel()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#cancel()
|
||||
*/
|
||||
public void cancel() {
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ public class DStoreFileSubSystemConfiguration extends FileServiceSubSystemConfig
|
|||
/**
|
||||
* Instantiate and return an instance of OUR subystem.
|
||||
* Do not populate it yet though!
|
||||
* @see org.eclipse.rse.core.subsystems.impl.SubSystemFactoryImpl#createSubSystemInternal(Host)
|
||||
* @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#createSubSystemInternal(IHost)
|
||||
*/
|
||||
public ISubSystem createSubSystemInternal(IHost host)
|
||||
{
|
||||
|
|
|
@ -47,7 +47,7 @@ public class DStoreFileSubSystemSearchResultConfiguration extends DStoreSearchRe
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#getResultsSize()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#getResultsSize()
|
||||
*/
|
||||
public int getResultsSize()
|
||||
{
|
||||
|
|
|
@ -66,7 +66,7 @@ public class FTPFileSubSystemConfiguration extends FileServiceSubSystemConfigura
|
|||
/**
|
||||
* Instantiate and return an instance of OUR subystem.
|
||||
* Do not populate it yet though!
|
||||
* @see org.eclipse.rse.core.subsystems.impl.SubSystemFactoryImpl#createSubSystemInternal(IHost)
|
||||
* @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#createSubSystemInternal(IHost)
|
||||
*/
|
||||
public ISubSystem createSubSystemInternal(IHost host)
|
||||
{
|
||||
|
|
|
@ -148,7 +148,7 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
|
|||
/**
|
||||
* Instantiate and return an instance of OUR subystem.
|
||||
* Do not populate it yet though!
|
||||
* @see org.eclipse.rse.core.subsystems.impl.SubSystemFactoryImpl#createSubSystemInternal(Host)
|
||||
* @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#createSubSystemInternal(IHost)
|
||||
*/
|
||||
public ISubSystem createSubSystemInternal(IHost host)
|
||||
{
|
||||
|
@ -209,7 +209,7 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
|
|||
|
||||
/**
|
||||
* Creates a config and adds it to the result set.
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfigurationFactory#createSearchConfiguration(org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultSet, java.lang.Object, org.eclipse.rse.services.clientserver.SystemSearchString)
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfigurationFactory#createSearchConfiguration(org.eclipse.rse.services.search.IHostSearchResultSet, java.lang.Object, org.eclipse.rse.services.clientserver.SystemSearchString)
|
||||
*/
|
||||
public IHostSearchResultConfiguration createSearchConfiguration(IHost host, IHostSearchResultSet resultSet, Object searchTarget, SystemSearchString searchString)
|
||||
{
|
||||
|
|
|
@ -42,7 +42,7 @@ public class LocalJavaLanguageUtility extends AbstractJavaLanguageUtility {
|
|||
|
||||
/**
|
||||
* The given remote file must be an instance of <code>LocalFileImpl</code>.
|
||||
* @see org.eclipse.rse.internal.subsystems.files.IJavaLanguageUtility#getQualifiedClassName(org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile)
|
||||
* @see org.eclipse.rse.internal.subsystems.files.core.IJavaLanguageUtility#getQualifiedClassName(org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile)
|
||||
*/
|
||||
public String getQualifiedClassName(IRemoteFile remoteFile) {
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ public class LocalSearchResultConfiguration extends AbstractSearchResultConfigur
|
|||
|
||||
|
||||
/**
|
||||
* @see org.eclipse.rse.core.subsystems.files.core.subsystems.IHostSearchResultConfiguration#cancel()
|
||||
* @see org.eclipse.rse.services.search.IHostSearchResultConfiguration#cancel()
|
||||
*/
|
||||
public void cancel() {
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ public class DStoreShellSubSystemConfiguration extends ShellServiceSubSystemConf
|
|||
/**
|
||||
* Instantiate and return an instance of OUR subystem.
|
||||
* Do not populate it yet though!
|
||||
* @see org.eclipse.rse.core.subsystems.impl.SubSystemFactoryImpl#createSubSystemInternal(Host)
|
||||
* @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#createSubSystemInternal(IHost)
|
||||
*/
|
||||
public ISubSystem createSubSystemInternal(IHost host)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue