Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-106-2 358a5bc91 -> c6c62febc


#ignite-106: Change full names of classes in javadocs.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/40094fae
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/40094fae
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/40094fae

Branch: refs/heads/ignite-106-2
Commit: 40094faef952bbe81652af849826da052fbaf394
Parents: 358a5bc
Author: ivasilinets <vasilinetc....@gmail.com>
Authored: Wed Feb 4 02:14:58 2015 +0300
Committer: ivasilinets <vasilinetc....@gmail.com>
Committed: Wed Feb 4 02:14:58 2015 +0300

----------------------------------------------------------------------
 .../apache/ignite/examples/compute/ComputeCallableExample.java | 2 +-
 .../examples/compute/ComputeContinuousMapperExample.java       | 6 +++---
 .../examples/compute/ComputeFibonacciContinuationExample.java  | 4 ++--
 .../apache/ignite/examples/compute/ComputeRunnableExample.java | 2 +-
 .../apache/ignite/examples/compute/ComputeTaskMapExample.java  | 2 +-
 .../ignite/examples/compute/ComputeTaskSplitExample.java       | 2 +-
 .../ignite/examples/datagrid/CacheDataLoaderExample.java       | 4 ++--
 .../org/apache/ignite/examples/datagrid/CacheQueryExample.java | 2 +-
 .../examples/datagrid/starschema/CacheStarSchemaExample.java   | 4 ++--
 .../apache/ignite/examples/datagrid/starschema/DimProduct.java | 3 ++-
 .../apache/ignite/examples/datagrid/starschema/DimStore.java   | 3 ++-
 .../ignite/examples/datagrid/starschema/FactPurchase.java      | 3 ++-
 .../java/org/apache/ignite/examples/fs/IgniteFsExample.java    | 2 +-
 .../apache/ignite/examples/fs/IgniteFsMapReduceExample.java    | 2 +-
 .../messaging/MessagingPingPongListenActorExample.java         | 2 +-
 .../ignite/examples/misc/deployment/DeploymentExample.java     | 4 ++--
 .../ignite/examples/misc/lifecycle/LifecycleExample.java       | 4 ++--
 .../ignite/examples/streaming/StreamingCheckInExample.java     | 4 ++--
 18 files changed, 29 insertions(+), 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeCallableExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeCallableExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeCallableExample.java
index e0f22de..9e39633 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeCallableExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeCallableExample.java
@@ -24,7 +24,7 @@ import org.apache.ignite.lang.*;
 import java.util.*;
 
 /**
- * Demonstrates using of {@link org.apache.ignite.lang.IgniteCallable} job 
execution on the cluster.
+ * Demonstrates using of {@link IgniteCallable} job execution on the cluster.
  * <p>
  * This example takes a sentence composed of multiple words and counts number 
of non-space
  * characters in the sentence by having each compute job count characters in 
each individual

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeContinuousMapperExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeContinuousMapperExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeContinuousMapperExample.java
index 760703b..ad0775a 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeContinuousMapperExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeContinuousMapperExample.java
@@ -30,7 +30,7 @@ import java.util.concurrent.atomic.*;
 /**
  * Demonstrates usage of continuous mapper. With continuous mapper
  * it is possible to continue mapping jobs asynchronously even after
- * initial {@link org.apache.ignite.compute.ComputeTask#map(List, Object)} 
method completes.
+ * 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
@@ -69,9 +69,9 @@ public class ComputeContinuousMapperExample {
      * is split into multiple words and next word is sent out for processing 
only
      * when the result for the previous word was received.
      * <p>
-     * Note that annotation {@link 
org.apache.ignite.compute.ComputeTaskNoResultCache} is optional and tells Ignite
+     * Note that annotation {@link ComputeTaskNoResultCache} is optional and 
tells Ignite
      * not to accumulate results from individual jobs. In this example we 
increment
-     * total character count directly in {@link 
#result(org.apache.ignite.compute.ComputeJobResult, List)} method,
+     * total character count directly in {@link #result(ComputeJobResult, 
List)} method,
      * and therefore don't need to accumulate them be be processed at 
reduction step.
      */
     @ComputeTaskNoResultCache

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeFibonacciContinuationExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeFibonacciContinuationExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeFibonacciContinuationExample.java
index 2cdc84c..2bae3c0 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeFibonacciContinuationExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeFibonacciContinuationExample.java
@@ -32,8 +32,8 @@ import java.util.*;
  * This example demonstrates how to use continuation feature of Ignite by
  * performing the distributed recursive calculation of {@code 'Fibonacci'}
  * numbers on the cluster. Continuations
- * functionality is exposed via {@link 
org.apache.ignite.compute.ComputeJobContext#holdcc()} and
- * {@link org.apache.ignite.compute.ComputeJobContext#callcc()} method calls 
in {@link FibonacciClosure} class.
+ * functionality is exposed via {@link ComputeJobContext#holdcc()} and
+ * {@link ComputeJobContext#callcc()} method calls in {@link 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/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeRunnableExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeRunnableExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeRunnableExample.java
index 6dce1bf..2921970 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeRunnableExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeRunnableExample.java
@@ -24,7 +24,7 @@ import org.apache.ignite.lang.*;
 import java.util.*;
 
 /**
- * Demonstrates a simple use of {@link org.apache.ignite.lang.IgniteRunnable}.
+ * Demonstrates a simple use of {@link IgniteRunnable}.
  * <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/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskMapExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskMapExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskMapExample.java
index df67513..b912cdb 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskMapExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskMapExample.java
@@ -27,7 +27,7 @@ import java.util.*;
 
 /**
  * Demonstrates a simple use of Ignite with
- * {@link org.apache.ignite.compute.ComputeTaskAdapter}.
+ * {@link ComputeTaskAdapter}.
  * <p>
  * Phrase passed as task argument is split into words on map stage and 
distributed among cluster nodes.
  * Each node computes word length and returns result to master node where 
total phrase length is

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskSplitExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskSplitExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskSplitExample.java
index 7c4c8a7..0e4c483 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskSplitExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/compute/ComputeTaskSplitExample.java
@@ -25,7 +25,7 @@ import org.jetbrains.annotations.*;
 import java.util.*;
 
 /**
- * Demonstrates a simple use of Ignite with {@link 
org.apache.ignite.compute.ComputeTaskSplitAdapter}.
+ * Demonstrates a simple use of Ignite with {@link ComputeTaskSplitAdapter}.
  * <p>
  * Phrase passed as task argument is split into jobs each taking one word. 
Then jobs are distributed among
  * cluster nodes. Each node computes word length and returns result to master 
node where total phrase length

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheDataLoaderExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheDataLoaderExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheDataLoaderExample.java
index 775884c..64fa179 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheDataLoaderExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheDataLoaderExample.java
@@ -21,8 +21,8 @@ import org.apache.ignite.*;
 import org.apache.ignite.examples.*;
 
 /**
- * Demonstrates how cache can be populated with data utilizing {@link 
org.apache.ignite.IgniteDataLoader} API.
- * {@link org.apache.ignite.IgniteDataLoader} is a lot more efficient to use 
than standard
+ * Demonstrates how cache can be populated with data utilizing {@link 
IgniteDataLoader} API.
+ * {@link IgniteDataLoader} is a lot more efficient to use than standard
  * {@code CacheProjection.put(...)} operation as it properly buffers cache 
requests
  * together and properly manages load on remote nodes.
  * <p>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
index 3e14ec2..04fb53d 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
@@ -47,7 +47,7 @@ import java.util.*;
  *     </li>
  *     <li>
  *         Joins will work correctly only if joined objects are stored in
- *         collocated mode. Refer to {@link 
org.apache.ignite.cache.affinity.CacheAffinityKey} javadoc for more details.
+ *         collocated mode. Refer to {@link CacheAffinityKey} javadoc for more 
details.
  *     </li>
  *     <li>
  *         Note that if you created query on to replicated cache, all data will

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java
index 1df3368..7465b89 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java
@@ -33,8 +33,8 @@ import java.util.concurrent.*;
  * as your master or reference data, while <i>facts</i> are usually large data 
sets of events or
  * other objects that continuously come into the system and may change 
frequently. In Ignite
  * such architecture is supported via cross-cache queries. By storing 
<i>dimensions</i> in
- * {@link org.apache.ignite.cache.CacheMode#REPLICATED REPLICATED} caches and 
<i>facts</i> in much larger
- * {@link org.apache.ignite.cache.CacheMode#PARTITIONED PARTITIONED} caches 
you can freely execute distributed joins across
+ * {@link CacheMode#REPLICATED REPLICATED} caches and <i>facts</i> in much 
larger
+ * {@link CacheMode#PARTITIONED PARTITIONED} caches you can freely execute 
distributed joins across
  * your whole in-memory data ignite cluster, thus querying your in memory data 
without any limitations.
  * <p>
  * In this example we have two <i>dimensions</i>, {@link DimProduct} and 
{@link DimStore} and

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimProduct.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimProduct.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimProduct.java
index 48fc99a..aa59ae5 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimProduct.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimProduct.java
@@ -18,10 +18,11 @@
 package org.apache.ignite.examples.datagrid.starschema;
 
 import org.apache.ignite.cache.query.*;
+import org.apache.ignite.cache.*;
 
 /**
  * Represents a product available for purchase. In our {@code snowflake} 
schema a {@code product}
- * is a {@code 'dimension'} and will be cached in {@link 
org.apache.ignite.cache.CacheMode#REPLICATED}
+ * is a {@code 'dimension'} and will be cached in {@link CacheMode#REPLICATED}
  * cache.
  */
 public class DimProduct {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimStore.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimStore.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimStore.java
index 34585bd..a2494b5 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimStore.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/DimStore.java
@@ -18,10 +18,11 @@
 package org.apache.ignite.examples.datagrid.starschema;
 
 import org.apache.ignite.cache.query.*;
+import org.apache.ignite.cache.*;
 
 /**
  * Represents a physical store location. In our {@code snowflake} schema a 
{@code store}
- * is a {@code 'dimension'} and will be cached in {@link 
org.apache.ignite.cache.CacheMode#REPLICATED}
+ * is a {@code 'dimension'} and will be cached in {@link CacheMode#REPLICATED}
  * cache.
  */
 public class DimStore {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/FactPurchase.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/FactPurchase.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/FactPurchase.java
index ed69be9..61bbb6f 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/FactPurchase.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/FactPurchase.java
@@ -18,10 +18,11 @@
 package org.apache.ignite.examples.datagrid.starschema;
 
 import org.apache.ignite.cache.query.*;
+import org.apache.ignite.cache.*;
 
 /**
  * Represents a purchase record. In our {@code snowflake} schema purchase
- * is a {@code 'fact'} and will be cached in larger {@link 
org.apache.ignite.cache.CacheMode#PARTITIONED}
+ * is a {@code 'fact'} and will be cached in larger {@link 
CacheMode#PARTITIONED}
  * cache.
  */
 public class FactPurchase {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsExample.java 
b/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsExample.java
index c4faa11..cb67ae3 100644
--- a/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsExample.java
+++ b/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsExample.java
@@ -25,7 +25,7 @@ import java.io.*;
 import java.util.*;
 
 /**
- * Example that shows usage of {@link org.apache.ignite.IgniteFs} API. It 
starts a node with {@code IgniteFs}
+ * Example that shows usage of {@link IgniteFs} API. It starts a node with 
{@code IgniteFs}
  * configured and performs several file system operations (create, write, 
append, read and delete
  * files, create, list and delete directories).
  * <p>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsMapReduceExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsMapReduceExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsMapReduceExample.java
index 0a02d7a..1570c6f 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsMapReduceExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/fs/IgniteFsMapReduceExample.java
@@ -27,7 +27,7 @@ import java.io.*;
 import java.util.*;
 
 /**
- * Example that shows how to use {@link 
org.apache.ignite.fs.mapreduce.IgniteFsTask} to find lines matching particular 
pattern in the file in pretty
+ * Example that shows how to use {@link IgniteFsTask} to find lines matching 
particular pattern in the file in pretty
  * the same way as {@code grep} command does.
  * <p>
  * Remote nodes should always be started with configuration file which includes

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java
index 9a745af..6a77efe 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java
@@ -26,7 +26,7 @@ import java.util.*;
 import java.util.concurrent.*;
 
 /**
- * Demonstrates messaging with {@link 
org.apache.ignite.messaging.MessagingListenActor} convenience adapter.
+ * Demonstrates messaging with {@link MessagingListenActor} convenience 
adapter.
  * <p>
  * To run this example you must have at least one remote node started.
  * <p>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java
index da4d7e3..1614d43 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java
@@ -93,8 +93,8 @@ public final class DeploymentExample {
      * Example task used to demonstrate direct task deployment through API.
      * For this example this task as available on the classpath, however
      * in real life that may not always be the case. In those cases
-     * you should use explicit {@link 
org.apache.ignite.IgniteCompute#localDeployTask(Class, ClassLoader)} apply and
-     * then use {@link org.apache.ignite.IgniteCompute#execute(String, Object)}
+     * you should use explicit {@link IgniteCompute#localDeployTask(Class, 
ClassLoader)} apply and
+     * then use {@link IgniteCompute#execute(String, Object)}
      * method passing your task name as first parameter.
      * <p>
      * Note that this task specifies explicit task name. Task name is optional

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/misc/lifecycle/LifecycleExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/misc/lifecycle/LifecycleExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/misc/lifecycle/LifecycleExample.java
index b5f20ce..f973b18 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/misc/lifecycle/LifecycleExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/misc/lifecycle/LifecycleExample.java
@@ -25,7 +25,7 @@ import org.apache.ignite.resources.*;
 import static org.apache.ignite.lifecycle.LifecycleEventType.*;
 
 /**
- * This example shows how to provide your own {@link 
org.apache.ignite.lifecycle.LifecycleBean} implementation
+ * This example shows how to provide your own {@link LifecycleBean} 
implementation
  * to be able to hook into Ignite lifecycle. The {@link LifecycleExampleBean} 
bean
  * will output occurred lifecycle events to the console.
  * <p>
@@ -60,7 +60,7 @@ public final class LifecycleExample {
     }
 
     /**
-     * Simple {@link org.apache.ignite.lifecycle.LifecycleBean} implementation 
that outputs event type when it is occurred.
+     * Simple {@link LifecycleBean} implementation that outputs event type 
when it is occurred.
      */
     public static class LifecycleExampleBean implements LifecycleBean {
         /** Auto-inject ignite instance. */

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/40094fae/examples/src/main/java/org/apache/ignite/examples/streaming/StreamingCheckInExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/streaming/StreamingCheckInExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/streaming/StreamingCheckInExample.java
index 87decd5..d6fa8a8 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/streaming/StreamingCheckInExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/streaming/StreamingCheckInExample.java
@@ -519,7 +519,7 @@ public class StreamingCheckInExample {
     }
 
     /**
-     * Index updater for check-in events. Updaters are specified for {@link 
org.apache.ignite.streamer.index.StreamerIndexProviderAdapter} in
+     * Index updater for check-in events. Updaters are specified for {@link 
StreamerIndexProviderAdapter} in
      * streamer configuration.
      */
     private static class CheckInEventIndexUpdater implements 
StreamerIndexUpdater<CheckInEvent, String, Location> {
@@ -549,7 +549,7 @@ public class StreamingCheckInExample {
     }
 
     /**
-     * Index updater for location info. Updaters are specified for {@link 
org.apache.ignite.streamer.index.StreamerIndexProviderAdapter} in
+     * Index updater for location info. Updaters are specified for {@link 
StreamerIndexProviderAdapter} in
      * streamer configuration.
      */
     private static class PlacesIndexUpdater implements 
StreamerIndexUpdater<LocationInfo, String, Place> {

Reply via email to