Repository: incubator-ignite Updated Branches: refs/heads/ignite-45 489d1b834 -> 934d4e069
ignite-432 Javadoc fix Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/6657e083 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/6657e083 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/6657e083 Branch: refs/heads/ignite-45 Commit: 6657e083d6e298dd6c2b761c3e7d6774458c7f81 Parents: 1e6613c Author: avinogradov <avinogra...@gridgain.com> Authored: Tue Mar 17 15:27:49 2015 +0300 Committer: avinogradov <avinogra...@gridgain.com> Committed: Tue Mar 17 15:28:19 2015 +0300 ---------------------------------------------------------------------- .../computegrid/ComputeContinuousMapperExample.java | 2 +- .../computegrid/ComputeFibonacciContinuationExample.java | 2 +- .../org/apache/ignite/internal/util/lang/GridFunc.java | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/6657e083/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java index 9834ae1..e0081ad 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java @@ -33,7 +33,7 @@ import java.util.concurrent.atomic.*; * initial {@link ComputeTask#map(List, Object)} method completes. * <p> * String "Hello Continuous Mapper" is passed as an argument for execution - * of {@link ContinuousMapperTask}. As an outcome, participating + * of {@link ComputeContinuousMapperExample.ContinuousMapperTask}. As an outcome, participating * nodes will print out a single word from the passed in string and return * number of characters in that word. However, to demonstrate continuous * mapping, next word will be mapped to a node only after the result from http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/6657e083/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java index 1dc96e5..7914c64 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java @@ -34,7 +34,7 @@ import java.util.concurrent.*; * performing the distributed recursive calculation of {@code 'Fibonacci'} * numbers on the cluster. Continuations * functionality is exposed via {@link ComputeJobContext#holdcc()} and - * {@link ComputeJobContext#callcc()} method calls in {@link FibonacciClosure} class. + * {@link ComputeJobContext#callcc()} method calls in {@link ComputeFibonacciContinuationExample.FibonacciClosure} class. * <p> * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/6657e083/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java b/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java index 5739b18..9714647 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java @@ -7226,13 +7226,13 @@ public class GridFunc { } /** - * Gets utility predicate that accepts {@link Map.Entry} value and compares + * Gets utility predicate that accepts {@link java.util.Map.Entry} value and compares * its value to the given value. * * @param val Value to compare entry's value. * @param <K> Map key type. * @param <V> Map value type. - * @return Predicate that accepts {@link Map.Entry} value and compares its value + * @return Predicate that accepts {@link java.util.Map.Entry} value and compares its value * to the given value. */ public static <K, V> IgnitePredicate<Map.Entry<K, V>> mapValue(@Nullable final V val) { @@ -7244,13 +7244,13 @@ public class GridFunc { } /** - * Gets utility predicate that accepts {@code Map.Entry} value and compares its key + * Gets utility predicate that accepts {@code java.util.Map.Entry} value and compares its key * to the given value. * * @param key Value to compare entry's key. * @param <K> Map key type. * @param <V> Map value type. - * @return Predicate that accepts {@code Map.Entry} value and compares its key + * @return Predicate that accepts {@code java.util.Map.Entry} value and compares its key * to the given value. */ public static <K, V> IgnitePredicate<Map.Entry<K, V>> mapKey(@Nullable final K key) { @@ -7704,7 +7704,7 @@ public class GridFunc { /** * Gets closure that returns value for an entry. The closure internally - * delegates to {@link javax.cache.Cache.Entry#get()} method. + * delegates to {@link javax.cache.Cache.Entry#get(Object)} method. * * @param <K> Key type. * @param <V> Value type.