1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 10:45:37 +02:00

Fix javadoc errors.

This commit is contained in:
gw6 2019-05-25 09:00:57 -04:00
parent bb7ad41cee
commit 27f72e8590
4 changed files with 9 additions and 18 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.remote.ui;singleton:=true Bundle-SymbolicName: org.eclipse.remote.ui;singleton:=true
Bundle-Version: 2.1.0.qualifier Bundle-Version: 2.1.1.qualifier
Bundle-Activator: org.eclipse.remote.internal.ui.RemoteUIPlugin Bundle-Activator: org.eclipse.remote.internal.ui.RemoteUIPlugin
Bundle-Vendor: %pluginProvider Bundle-Vendor: %pluginProvider
Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-RequiredExecutionEnvironment: JavaSE-1.7

View file

@ -12,5 +12,5 @@
<artifactId>org.eclipse.remote.ui</artifactId> <artifactId>org.eclipse.remote.ui</artifactId>
<packaging>eclipse-plugin</packaging> <packaging>eclipse-plugin</packaging>
<version>2.1.0-SNAPSHOT</version> <version>2.1.1-SNAPSHOT</version>
</project> </project>

View file

@ -274,7 +274,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
* text field, and in a future version should expand the browser to this * text field, and in a future version should expand the browser to this
* location if it exists. * location if it exists.
* *
* @param path * @param path initial path
*/ */
public void setInitialPath(String path) { public void setInitialPath(String path) {
fInitialPath = path; fInitialPath = path;
@ -283,7 +283,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
/** /**
* Set the fDialogTitle of the dialog. * Set the fDialogTitle of the dialog.
* *
* @param title * @param title title to display
*/ */
public void setTitle(String title) { public void setTitle(String title) {
fDialogTitle = title; fDialogTitle = title;
@ -308,7 +308,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
/** /**
* Show available connections on browser if possible (default disabled). * Show available connections on browser if possible (default disabled).
* *
* @param enable * @param enable enable connection display if true
*/ */
public void showConnections(boolean enable) { public void showConnections(boolean enable) {
fShowConnections = enable; fShowConnections = enable;
@ -317,7 +317,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
/** /**
* Enable a checkbox to show hidden files (default enabled) * Enable a checkbox to show hidden files (default enabled)
* *
* @param showHidden * @param showHidden show hidden files if true
*/ */
public void showHiddenCheckbox(boolean showHidden) { public void showHiddenCheckbox(boolean showHidden) {
fShowHiddenCheckbox = showHidden; fShowHiddenCheckbox = showHidden;
@ -326,7 +326,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
/** /**
* Enable selection of local files * Enable selection of local files
* *
* @param showNewFolderButton * @param showLocalSelection show local files if true
*/ */
public void showLocalSelection(boolean showLocalSelection) { public void showLocalSelection(boolean showLocalSelection) {
fShowLocalSelection = showLocalSelection; fShowLocalSelection = showLocalSelection;
@ -335,7 +335,7 @@ public class RemoteResourceBrowser extends Dialog implements IRunnableContext {
/** /**
* Enable a button to create new folders (default enabled) * Enable a button to create new folders (default enabled)
* *
* @param showNewFolderButton * @param showNewFolderButton show new folder button if true
*/ */
public void showNewFolderButton(boolean showNewFolderButton) { public void showNewFolderButton(boolean showNewFolderButton) {
fShowNewFolderButton = showNewFolderButton; fShowNewFolderButton = showNewFolderButton;

View file

@ -176,8 +176,6 @@ public class RemoteConnectionWidget extends Composite {
* a combination of flags that modify the behavior of the widget. * a combination of flags that modify the behavior of the widget.
* @param context * @param context
* runnable context, or null * runnable context, or null
* @param connnectionTypes
* list of connection types to select from
* @since 2.0 * @since 2.0
*/ */
public RemoteConnectionWidget(Composite parent, int style, String title, int flags, IRunnableContext context) { public RemoteConnectionWidget(Composite parent, int style, String title, int flags, IRunnableContext context) {
@ -217,7 +215,7 @@ public class RemoteConnectionWidget extends Composite {
* a combination of flags that modify the behavior of the widget. * a combination of flags that modify the behavior of the widget.
* @param context * @param context
* runnable context, or null * runnable context, or null
* @param connnectionTypes * @param connectionTypes
* list of connection types to select from * list of connection types to select from
* @since 2.0 * @since 2.0
*/ */
@ -401,8 +399,6 @@ public class RemoteConnectionWidget extends Composite {
/** /**
* Handle the section of a new connection. Update connection option buttons appropriately. * Handle the section of a new connection. Update connection option buttons appropriately.
*
* @throws CoreException
*/ */
protected void handleConnectionSelected() { protected void handleConnectionSelected() {
final boolean enabled = fWidgetListener.isEnabled(); final boolean enabled = fWidgetListener.isEnabled();
@ -432,8 +428,6 @@ public class RemoteConnectionWidget extends Composite {
* connection combo with the new connection. * connection combo with the new connection.
* *
* TODO should probably select the new connection * TODO should probably select the new connection
*
* @throws CoreException
*/ */
protected void handleNewRemoteConnectionSelected() { protected void handleNewRemoteConnectionSelected() {
if (getUIConnectionManager() != null) { if (getUIConnectionManager() != null) {
@ -461,7 +455,6 @@ public class RemoteConnectionWidget extends Composite {
* *
* @param conn * @param conn
* connection to select as current. If conn is null, select the first item in the list. * connection to select as current. If conn is null, select the first item in the list.
* @throws CoreException
* @since 2.0 * @since 2.0
*/ */
protected void handleConnectionTypeSelected(IRemoteConnection conn) { protected void handleConnectionTypeSelected(IRemoteConnection conn) {
@ -543,7 +536,6 @@ public class RemoteConnectionWidget extends Composite {
/** /**
* Initialize the contents of the connection type combo. Keeps an array of connection types that matches the combo elements. * Initialize the contents of the connection type combo. Keeps an array of connection types that matches the combo elements.
* Returns the id of the selected element.
* *
* @since 2.0 * @since 2.0
*/ */
@ -622,7 +614,6 @@ public class RemoteConnectionWidget extends Composite {
* connection type id * connection type id
* @param name * @param name
* connection name * connection name
* @throws CoreException
* @since 6.0 * @since 6.0
*/ */
public void setConnection(String id, String name) { public void setConnection(String id, String name) {