| author | Deepak Azad | 2012-01-13 09:37:25 (EST) |
|---|---|---|
| committer | Dani Megert | 2012-01-13 09:37:48 (EST) |
| commit | fcc84dccd53b316e74372cc312e7e18c7ba8ffbf (patch) (side-by-side diff) | |
| tree | 29187e016e2138dcd003078e8828fca7145916a7 | |
| parent | 7d1fe03bbd2faf543977bc7b214a4f593208271e (diff) | |
| download | eclipse.jdt.ui-fcc84dccd53b316e74372cc312e7e18c7ba8ffbf.zip eclipse.jdt.ui-fcc84dccd53b316e74372cc312e7e18c7ba8ffbf.tar.gz eclipse.jdt.ui-fcc84dccd53b316e74372cc312e7e18c7ba8ffbf.tar.bz2 | |
v0.53 Bug 364287: [build path] Allow viewing and editing the specified
index files for a library.
| -rw-r--r-- | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java index b252c58..bcd7208 100644 --- a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java +++ b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java @@ -112,19 +112,19 @@ public final class BuildPathDialogAccess { } /** - * Shows the UI for configuring a javadoc location. <code>null</code> is returned - * if the user cancels the dialog. If OK is pressed, an array of length 1 containing the configured URL is - * returned. Note that the configured URL can be <code>null</code> when the user - * wishes to have no URL location specified. The dialog does not apply any changes. - * Use {@link org.eclipse.jdt.ui.JavaUI} to access and configure - * Javadoc locations. - * + * Shows the UI for configuring a javadoc location. <code>null</code> is returned if the user + * cancels the dialog. If OK is pressed, an array of length 1 containing the configured URL is + * returned. Note that the configured URL can be <code>null</code> when the user wishes to have + * no URL location specified. The dialog does not apply any changes. Use + * {@link org.eclipse.jdt.ui.JavaUI} to access and configure Javadoc locations. + * * @param shell The parent shell for the dialog. * @param libraryName Name of of the library to which configured javadoc location belongs. * @param initialURL The initial URL or <code>null</code>. * @return Returns an array of size 1 that contains the resulting javadoc location or - * <code>null</code> if the dialog has been canceled. Note that the configured URL can be <code>null</code> when the user - * wishes to have no URL location specified. + * <code>null</code> if the dialog has been canceled. Note that the configured URL can + * be <code>null</code> when the user wishes to have no URL location specified. + * @since 3.8 */ public static URL[] configureJavadocLocation(Shell shell, String libraryName, URL initialURL) { if (libraryName == null) { @@ -151,6 +151,7 @@ public final class BuildPathDialogAccess { * @return Returns an array of size 1 that contains the resulting index location or * <code>null</code> if the dialog has been canceled. Note that the configured URL can * be <code>null</code> when the user wishes to have no URL location specified. + * @since 3.8 */ public static URL[] configureIndexLocation(Shell shell, String libraryName, URL initialURL) { if (libraryName == null) { |

