You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by hs...@apache.org on 2015/11/30 22:28:30 UTC

[5/7] incubator-apex-malhar git commit: Adding missing @since tags for 2.0.0 release

Adding missing @since tags for 2.0.0 release


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/818c683e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/818c683e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/818c683e

Branch: refs/heads/devel-3
Commit: 818c683e051233e92f5b1d3263d6f8e222d3d9b9
Parents: 1576ce7
Author: sashadt <sa...@datatorrent.com>
Authored: Fri Jan 30 18:44:47 2015 -0800
Committer: Chandni Singh <cs...@apache.org>
Committed: Mon Nov 23 21:37:02 2015 -0800

----------------------------------------------------------------------
 HDHTFileAccess.java       | 2 ++
 HDHTFileAccessFSImpl.java | 2 ++
 tfile/DTFileReader.java   | 1 +
 tfile/TFileImpl.java      | 1 +
 tfile/TFileReader.java    | 5 +++++
 tfile/TFileWriter.java    | 5 +++++
 6 files changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/HDHTFileAccess.java
----------------------------------------------------------------------
diff --git a/HDHTFileAccess.java b/HDHTFileAccess.java
index fc3d56f..a26c1a7 100644
--- a/HDHTFileAccess.java
+++ b/HDHTFileAccess.java
@@ -25,6 +25,8 @@ import com.datatorrent.common.util.Slice;
 
 /**
  * Abstraction for file system and format interaction.
+ *
+ * @since 2.0.0
  */
 public interface HDHTFileAccess extends Closeable
 {

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/HDHTFileAccessFSImpl.java
----------------------------------------------------------------------
diff --git a/HDHTFileAccessFSImpl.java b/HDHTFileAccessFSImpl.java
index ad9aa05..5c9cbfa 100644
--- a/HDHTFileAccessFSImpl.java
+++ b/HDHTFileAccessFSImpl.java
@@ -31,6 +31,8 @@ import com.datatorrent.common.util.DTThrowable;
 
 /**
  * Hadoop file system backed store.
+ *
+ * @since 2.0.0
  */
 abstract public class HDHTFileAccessFSImpl implements HDHTFileAccess
 {

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/tfile/DTFileReader.java
----------------------------------------------------------------------
diff --git a/tfile/DTFileReader.java b/tfile/DTFileReader.java
index fefadaf..a164b98 100644
--- a/tfile/DTFileReader.java
+++ b/tfile/DTFileReader.java
@@ -39,6 +39,7 @@ import com.datatorrent.contrib.hdht.HDHTFileAccess.HDSFileReader;
  * DTFileReader is also fully compatible with any file generated by {@link TFileWriter}. So there is no corresponding "DTFileWriter"
  *
  *
+ * @since 2.0.0
  */
 public class DTFileReader implements HDSFileReader
 {

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/tfile/TFileImpl.java
----------------------------------------------------------------------
diff --git a/tfile/TFileImpl.java b/tfile/TFileImpl.java
index 714a5b1..5dc9464 100644
--- a/tfile/TFileImpl.java
+++ b/tfile/TFileImpl.java
@@ -34,6 +34,7 @@ import com.datatorrent.contrib.hdht.HDHTFileAccessFSImpl;
  * <li>{@link TFileImpl.DTFileImpl} return DTFile {@link org.apache.hadoop.io.file.tfile.DTFile.Reader}(which is faster than default TFile reader) and {@link Writer} for IO operations</li> 
  * </ul>
  *
+ * @since 2.0.0
  */
 public abstract class TFileImpl extends HDHTFileAccessFSImpl
 {

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/tfile/TFileReader.java
----------------------------------------------------------------------
diff --git a/tfile/TFileReader.java b/tfile/TFileReader.java
index d20408c..972b4f9 100644
--- a/tfile/TFileReader.java
+++ b/tfile/TFileReader.java
@@ -28,6 +28,11 @@ import org.apache.hadoop.io.file.tfile.TFile.Reader.Scanner.Entry;
 
 import com.datatorrent.contrib.hdht.HDHTFileAccess.HDSFileReader;
 
+/**
+ * TFileReader
+ *
+ * @since 2.0.0
+ */
 public class TFileReader implements HDSFileReader
 {
 

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/818c683e/tfile/TFileWriter.java
----------------------------------------------------------------------
diff --git a/tfile/TFileWriter.java b/tfile/TFileWriter.java
index b6fd90d..549e1b8 100644
--- a/tfile/TFileWriter.java
+++ b/tfile/TFileWriter.java
@@ -23,6 +23,11 @@ import org.apache.hadoop.io.file.tfile.TFile.Writer;
 
 import com.datatorrent.contrib.hdht.HDHTFileAccess.HDSFileWriter;
 
+/**
+ * TFileWriter
+ *
+ * @since 2.0.0
+ */
 public final class TFileWriter implements HDSFileWriter
 {
   private Writer writer;