diff options
author | skygo <skygo@unknown> | 2014-02-25 02:01:14 +0000 |
---|---|---|
committer | skygo <skygo@unknown> | 2014-02-25 02:01:14 +0000 |
commit | 764c9d64245b90cddef47289467a623ec0dac9e4 (patch) | |
tree | 2dfadf5fb667d57542a184593f34f946f5cc7d4d /archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api | |
parent | 0b3773952c9ea2edda2d90fab37392068500a0b9 (diff) | |
download | archiva-764c9d64245b90cddef47289467a623ec0dac9e4.tar.gz archiva-764c9d64245b90cddef47289467a623ec0dac9e4.zip |
fix javadoc. Generation possible on jdk8
(fix html content + replace @todo with TODO )
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1571532 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api')
-rw-r--r-- | archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/RepositoryContentConsumer.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/RepositoryContentConsumer.java b/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/RepositoryContentConsumer.java index e5e422e27..d0483081e 100644 --- a/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/RepositoryContentConsumer.java +++ b/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/RepositoryContentConsumer.java @@ -36,14 +36,14 @@ public interface RepositoryContentConsumer /** * Get the list of included file patterns for this consumer. * - * @return the list of {@link String} patterns. (example: <code>"**<span />/*.pom"</code>) + * @return the list of {@link String} patterns. (example: <code>"**/*.pom"</code>) */ List<String> getIncludes(); /** * Get the list of excluded file patterns for this consumer. * - * @return the list of {@link String} patterns. (example: <code>"**<span />/*.pom"</code>) - (can be null for no exclusions) + * @return the list of {@link String} patterns. (example: <code>"**/*.pom"</code>) - (can be null for no exclusions) */ List<String> getExcludes(); @@ -51,7 +51,6 @@ public interface RepositoryContentConsumer * <p> * Event that triggers at the beginning of a scan. * </p> - * <p/> * <p> * NOTE: This would be a good place to initialize the consumer, to lock any resources, and to * generally start tracking the scan as a whole. @@ -83,7 +82,6 @@ public interface RepositoryContentConsumer * <p> * Event indicating a file is to be processed by this consumer. * </p> - * <p/> * <p> * NOTE: The consumer does not need to process the file immediately, can can opt to queue and/or track * the files to be processed in batch. Just be sure to complete the processing by the {@link #completeScan()} @@ -108,7 +106,6 @@ public interface RepositoryContentConsumer * <p> * Event that triggers on the completion of a scan. * </p> - * <p/> * <p> * NOTE: If the consumer opted to batch up processing requests in the {@link #processFile(String)} event * this would be the last opportunity to drain any processing queue's. @@ -118,7 +115,6 @@ public interface RepositoryContentConsumer /** * @param executeOnEntireRepo - * @throws Exception */ void completeScan( boolean executeOnEntireRepo ); |