Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-08-20 04:31:48 +0000
committerAlexander Kurtakov2015-08-20 05:09:18 +0000
commit0ee2ce60357d32800967311046c71dd13c1adae9 (patch)
treeab3823c62cb2ee6c586ceb045ed06040b669bcd8 /containers/org.eclipse.linuxtools.docker.core/src/org/eclipse
parentc2a2ca8efb3c3fd1825f412e49810f2a84cc62f9 (diff)
downloadorg.eclipse.linuxtools-0ee2ce60357d32800967311046c71dd13c1adae9.tar.gz
org.eclipse.linuxtools-0ee2ce60357d32800967311046c71dd13c1adae9.tar.xz
org.eclipse.linuxtools-0ee2ce60357d32800967311046c71dd13c1adae9.zip
docker: Fix build.
Java 8 javadoc is really strict so malformed javadocs break the nightly builds. Make the javadoc problems error in the IDE too to make it obvious. Change-Id: Ie64f5ec2cfc564942b2fc02f0d115a82c597b7ea Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/54183 Tested-by: Hudson CI
Diffstat (limited to 'containers/org.eclipse.linuxtools.docker.core/src/org/eclipse')
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java1
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerRegistry.java6
2 files changed, 3 insertions, 4 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
index 14203a3f50..ca6d18d5be 100644
--- a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
+++ b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
@@ -169,6 +169,7 @@ public interface IDockerConnection {
*
* @return the {@link List} of existing {@link IDockerImage}
* @throws DockerException
+ * If listing images failed.
*/
public List<IDockerImage> listImages() throws DockerException;
diff --git a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerRegistry.java b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerRegistry.java
index a755a73c00..a054a907a6 100644
--- a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerRegistry.java
+++ b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerRegistry.java
@@ -14,20 +14,18 @@ package org.eclipse.linuxtools.docker.core;
import java.util.List;
import java.util.concurrent.ExecutionException;
-import com.spotify.docker.client.DockerRequestException;
-
/**
* An interface for Docker registries.
*/
public interface IDockerRegistry {
/**
- * @return the {@link List} of available {@link IDockerImageTagSearchResult}
+ * @return the {@link List} of available {@link IDockerImageSearchResult}
* for the given repository on this IDockerRegistry.
* @param repository
* the image repository
* @throws InterruptedException
- * @throws DockerRequestException
+ * @throws DockerException
* @throws ExecutionException
*/
List<IRepositoryTag> getTags(String repository)

Back to the top