Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2016-03-15 10:00:36 +0000
committerBrian de Alwis2016-03-16 13:26:25 +0000
commit9f6e138b72eadf6b34168a24ffd35b7714eaa11c (patch)
tree783c2a16c58212e522d665b2e78cc836f25e9fc0
parent55895b854a41dbd8fa4f1e4aee546d5d2433d6b9 (diff)
downloadeclipse.platform.ui-9f6e138b72eadf6b34168a24ffd35b7714eaa11c.tar.gz
eclipse.platform.ui-9f6e138b72eadf6b34168a24ffd35b7714eaa11c.tar.xz
eclipse.platform.ui-9f6e138b72eadf6b34168a24ffd35b7714eaa11c.zip
Bug 472614 - Smart Import - fix JavadocI20160316-1200
Change-Id: I78393b12d932f7a37639c3fd9000e78677ae2cbe Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ProjectConfigurator.java20
1 files changed, 13 insertions, 7 deletions
diff --git a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ProjectConfigurator.java b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ProjectConfigurator.java
index 57bf9a9ba2d..36cb63f7f3f 100644
--- a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ProjectConfigurator.java
+++ b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ProjectConfigurator.java
@@ -48,18 +48,21 @@ public interface ProjectConfigurator {
/**
* This method MUST BE stateless (ideally static)
- * @param folder
+ *
+ * @param container
* @param monitor
- * @return true if the given folder is for sure to be considered as a project
+ * @return true if the given folder is for sure to be considered as a
+ * project
*/
public boolean shouldBeAnEclipseProject(IContainer container, IProgressMonitor monitor);
/**
* This method MUST BE stateless (ideally static)
- * @param folder
+ *
+ * @param project
* @param monitor
- * @return the set of children folder to ignore in import operation. Typically
- * work directories such as bin/ target/ ....
+ * @return the set of children folder to ignore in import operation.
+ * Typically work directories such as bin/ target/ ....
*/
public Set<IFolder> getDirectoriesToIgnore(IProject project, IProgressMonitor monitor);
@@ -84,9 +87,12 @@ public interface ProjectConfigurator {
/**
* This method MUST BE be stateless (ideally static)
+ *
* @param project
- * @param ignoredPaths paths that have to be ignore when checking whether configurator applies.
- * Those will typically be nested projects, or "work" directory (bin/ target/ ...)
+ * @param excludedDirectories
+ * paths that have to be ignored when checking whether
+ * configurator applies. Those will typically be nested projects,
+ * or "work" directory (bin/ target/ ...)
* @param monitor
*/
public void configure(IProject project, Set<IPath> excludedDirectories, IProgressMonitor monitor);

Back to the top