From 76b9ec1c33cd742d8c1e53ccbe5d9aa0e5b31e83 Mon Sep 17 00:00:00 2001
From: brinn <brinn>
Date: Fri, 27 Mar 2009 19:24:28 +0000
Subject: [PATCH] fix: javadoc formatting

SVN: 10395
---
 .../java/ch/systemsx/cisd/base/mdarray/MDByteArray.java   | 8 ++++----
 .../java/ch/systemsx/cisd/base/mdarray/MDFloatArray.java  | 8 ++++----
 .../java/ch/systemsx/cisd/base/mdarray/MDIntArray.java    | 8 ++++----
 .../java/ch/systemsx/cisd/base/mdarray/MDLongArray.java   | 8 ++++----
 .../java/ch/systemsx/cisd/base/mdarray/MDShortArray.java  | 8 ++++----
 5 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/base/source/java/ch/systemsx/cisd/base/mdarray/MDByteArray.java b/base/source/java/ch/systemsx/cisd/base/mdarray/MDByteArray.java
index 0da289594d9..7c48d92b925 100644
--- a/base/source/java/ch/systemsx/cisd/base/mdarray/MDByteArray.java
+++ b/base/source/java/ch/systemsx/cisd/base/mdarray/MDByteArray.java
@@ -48,7 +48,7 @@ public final class MDByteArray extends MDAbstractArray<Byte>
 
     /**
      * Creates a {@link MDByteArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible. Convenience method if <var>dimensions</var> are available as
      * {@code long[]}.
      */
@@ -76,7 +76,7 @@ public final class MDByteArray extends MDAbstractArray<Byte>
 
     /**
      * Creates a {@link MDByteArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible.
      */
     public MDByteArray(byte[] flattenedArray, int[] dimensions, boolean checkdimensions)
@@ -98,7 +98,7 @@ public final class MDByteArray extends MDAbstractArray<Byte>
 
     /**
      * Creates a {@link MDByteArray} from the given <var>matrix</var> of rank 2. Note that the
-     * values in <var>matrix</var> will be copied and thus the created {@link MDDoubleArray} will be
+     * values in <var>matrix</var> will be copied and thus the created {@link MDByteArray} will be
      * independent from <var>matrix</var> after construction.
      */
     public MDByteArray(byte[][] matrix)
@@ -110,7 +110,7 @@ public final class MDByteArray extends MDAbstractArray<Byte>
      * Creates a {@link MDByteArray} from the given <var>matrix</var> of rank 2 and the
      * <var>dimension</var> which need to be less or equal the dimensions of <var>matrix</var>. Note
      * that the values in <var>matrix</var> will be copied and thus the created
-     * {@link MDDoubleArray} will be independent from <var>matrix</var> after construction.
+     * {@link MDByteArray} will be independent from <var>matrix</var> after construction.
      */
     public MDByteArray(byte[][] matrix, int[] dimensions)
     {
diff --git a/base/source/java/ch/systemsx/cisd/base/mdarray/MDFloatArray.java b/base/source/java/ch/systemsx/cisd/base/mdarray/MDFloatArray.java
index e5eb557e427..e3f1f9269cd 100644
--- a/base/source/java/ch/systemsx/cisd/base/mdarray/MDFloatArray.java
+++ b/base/source/java/ch/systemsx/cisd/base/mdarray/MDFloatArray.java
@@ -48,7 +48,7 @@ public final class MDFloatArray extends MDAbstractArray<Float>
 
     /**
      * Creates a {@link MDDoubleArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible. Convenience method if <var>dimensions</var> are available as
      * {@code long[]}.
      */
@@ -76,7 +76,7 @@ public final class MDFloatArray extends MDAbstractArray<Float>
 
     /**
      * Creates a {@link MDDoubleArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible.
      */
     public MDFloatArray(float[] flattenedArray, int[] dimensions, boolean checkdimensions)
@@ -98,7 +98,7 @@ public final class MDFloatArray extends MDAbstractArray<Float>
 
     /**
      * Creates a {@link MDFloatArray} from the given <var>matrix</var> of rank 2. Note that the
-     * values in <var>matrix</var> will be copied and thus the created {@link MDDoubleArray} will be
+     * values in <var>matrix</var> will be copied and thus the created {@link MDFloatArray} will be
      * independent from <var>matrix</var> after construction.
      */
     public MDFloatArray(float[][] matrix)
@@ -110,7 +110,7 @@ public final class MDFloatArray extends MDAbstractArray<Float>
      * Creates a {@link MDFloatArray} from the given <var>matrix</var> of rank 2 and the
      * <var>dimension</var> which need to be less or equal the dimensions of <var>matrix</var>. Note
      * that the values in <var>matrix</var> will be copied and thus the created
-     * {@link MDDoubleArray} will be independent from <var>matrix</var> after construction.
+     * {@link MDFloatArray} will be independent from <var>matrix</var> after construction.
      */
     public MDFloatArray(float[][] matrix, int[] dimensions)
     {
diff --git a/base/source/java/ch/systemsx/cisd/base/mdarray/MDIntArray.java b/base/source/java/ch/systemsx/cisd/base/mdarray/MDIntArray.java
index 9caf649431f..13cfcbf887a 100644
--- a/base/source/java/ch/systemsx/cisd/base/mdarray/MDIntArray.java
+++ b/base/source/java/ch/systemsx/cisd/base/mdarray/MDIntArray.java
@@ -48,7 +48,7 @@ public final class MDIntArray extends MDAbstractArray<Integer>
 
     /**
      * Creates a {@link MDIntArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible. Convenience method if <var>dimensions</var> are available as
      * {@code long[]}.
      */
@@ -76,7 +76,7 @@ public final class MDIntArray extends MDAbstractArray<Integer>
 
     /**
      * Creates a {@link MDIntArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible.
      */
     public MDIntArray(int[] flattenedArray, int[] dimensions, boolean checkdimensions)
@@ -98,7 +98,7 @@ public final class MDIntArray extends MDAbstractArray<Integer>
 
     /**
      * Creates a {@link MDIntArray} from the given <var>matrix</var> of rank 2. Note that the
-     * values in <var>matrix</var> will be copied and thus the created {@link MDDoubleArray} will be
+     * values in <var>matrix</var> will be copied and thus the created {@link MDIntArray} will be
      * independent from <var>matrix</var> after construction.
      */
     public MDIntArray(int[][] matrix)
@@ -110,7 +110,7 @@ public final class MDIntArray extends MDAbstractArray<Integer>
      * Creates a {@link MDIntArray} from the given <var>matrix</var> of rank 2 and the
      * <var>dimension</var> which need to be less or equal the dimensions of <var>matrix</var>. Note
      * that the values in <var>matrix</var> will be copied and thus the created
-     * {@link MDDoubleArray} will be independent from <var>matrix</var> after construction.
+     * {@link MDIntArray} will be independent from <var>matrix</var> after construction.
      */
     public MDIntArray(int[][] matrix, int[] dimensions)
     {
diff --git a/base/source/java/ch/systemsx/cisd/base/mdarray/MDLongArray.java b/base/source/java/ch/systemsx/cisd/base/mdarray/MDLongArray.java
index 53c06f30ba6..a6bccc16abd 100644
--- a/base/source/java/ch/systemsx/cisd/base/mdarray/MDLongArray.java
+++ b/base/source/java/ch/systemsx/cisd/base/mdarray/MDLongArray.java
@@ -48,7 +48,7 @@ public final class MDLongArray extends MDAbstractArray<Long>
 
     /**
      * Creates a {@link MDLongArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible. Convenience method if <var>dimensions</var> are available as
      * {@code long[]}.
      */
@@ -76,7 +76,7 @@ public final class MDLongArray extends MDAbstractArray<Long>
 
     /**
      * Creates a {@link MDLongArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible.
      */
     public MDLongArray(long[] flattenedArray, int[] dimensions, boolean checkdimensions)
@@ -98,7 +98,7 @@ public final class MDLongArray extends MDAbstractArray<Long>
 
     /**
      * Creates a {@link MDLongArray} from the given <var>matrix</var> of rank 2. Note that the
-     * values in <var>matrix</var> will be copied and thus the created {@link MDDoubleArray} will be
+     * values in <var>matrix</var> will be copied and thus the created {@link MDLongArray} will be
      * independent from <var>matrix</var> after construction.
      */
     public MDLongArray(long[][] matrix)
@@ -110,7 +110,7 @@ public final class MDLongArray extends MDAbstractArray<Long>
      * Creates a {@link MDLongArray} from the given <var>matrix</var> of rank 2 and the
      * <var>dimension</var> which need to be less or equal the dimensions of <var>matrix</var>. Note
      * that the values in <var>matrix</var> will be copied and thus the created
-     * {@link MDDoubleArray} will be independent from <var>matrix</var> after construction.
+     * {@link MDLongArray} will be independent from <var>matrix</var> after construction.
      */
     public MDLongArray(long[][] matrix, int[] dimensions)
     {
diff --git a/base/source/java/ch/systemsx/cisd/base/mdarray/MDShortArray.java b/base/source/java/ch/systemsx/cisd/base/mdarray/MDShortArray.java
index ecd50df0812..d8d2d85efba 100644
--- a/base/source/java/ch/systemsx/cisd/base/mdarray/MDShortArray.java
+++ b/base/source/java/ch/systemsx/cisd/base/mdarray/MDShortArray.java
@@ -48,7 +48,7 @@ public final class MDShortArray extends MDAbstractArray<Short>
 
     /**
      * Creates a {@link MDShortArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible. Convenience method if <var>dimensions</var> are available as
      * {@code long[]}.
      */
@@ -76,7 +76,7 @@ public final class MDShortArray extends MDAbstractArray<Short>
 
     /**
      * Creates a {@link MDShortArray} from the given <var>flattenedArray</var> and
-     * <var>dimensions</var>. If <var>checkDimensions/var>} is {@code true}, it is checked that the
+     * <var>dimensions</var>. If <var>checkDimensions</var> is {@code true}, it is checked that the
      * arguments are compatible.
      */
     public MDShortArray(short[] flattenedArray, int[] dimensions, boolean checkdimensions)
@@ -98,7 +98,7 @@ public final class MDShortArray extends MDAbstractArray<Short>
 
     /**
      * Creates a {@link MDShortArray} from the given <var>matrix</var> of rank 2. Note that the
-     * values in <var>matrix</var> will be copied and thus the created {@link MDDoubleArray} will be
+     * values in <var>matrix</var> will be copied and thus the created {@link MDShortArray} will be
      * independent from <var>matrix</var> after construction.
      */
     public MDShortArray(short[][] matrix)
@@ -110,7 +110,7 @@ public final class MDShortArray extends MDAbstractArray<Short>
      * Creates a {@link MDShortArray} from the given <var>matrix</var> of rank 2 and the
      * <var>dimension</var> which need to be less or equal the dimensions of <var>matrix</var>. Note
      * that the values in <var>matrix</var> will be copied and thus the created
-     * {@link MDDoubleArray} will be independent from <var>matrix</var> after construction.
+     * {@link MDShortArray} will be independent from <var>matrix</var> after construction.
      */
     public MDShortArray(short[][] matrix, int[] dimensions)
     {
-- 
GitLab