]> source.dussan.org Git - jgit.git/commitdiff
Add missing javadoc to bitmap index classes 99/59999/1
authorMatthias Sohn <matthias.sohn@sap.com>
Mon, 9 Nov 2015 23:50:55 +0000 (00:50 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Mon, 9 Nov 2015 23:50:55 +0000 (00:50 +0100)
Change-Id: Ib9fd230c9465a719df53cfcb314d8b5015743928
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java

index 2c4af706807b47d82a0aeb8989944def4323dc40..b27bcc425802dd553a3d9248f1831f0a6a062051 100644 (file)
@@ -327,6 +327,12 @@ public class BitmapIndexImpl implements BitmapIndex {
                final EWAHCompressedBitmap bitmap;
                final BitmapIndexImpl bitmapIndex;
 
+               /**
+                * Construct compressed bitmap for given bitmap and bitmap index
+                *
+                * @param bitmap
+                * @param bitmapIndex
+                */
                public CompressedBitmap(EWAHCompressedBitmap bitmap, BitmapIndexImpl bitmapIndex) {
                        this.bitmap = bitmap;
                        this.bitmapIndex = bitmapIndex;
index 037d3fd2a90cb0a6a141044dda13af1124c1db0e..9ddff25480d19663862f3a2db35cb30dcb8fe584 100644 (file)
@@ -206,7 +206,9 @@ public interface BitmapIndex {
                int cardinality();
 
                /**
-                * The BitmapIndex for this BitmapBuilder.
+                * Get the BitmapIndex for this BitmapBuilder.
+                *
+                * @return the BitmapIndex for this BitmapBuilder
                 *
                 * @since 4.2
                 */