Skip to content

Commit 098d738

Browse files
[MIN] Documentation
1 parent 82874af commit 098d738

File tree

11 files changed

+22
-11
lines changed

11 files changed

+22
-11
lines changed

basex-core/src/main/java/org/basex/query/value/seq/BlnSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ private BlnSeq(final boolean[] values) {
3737
}
3838

3939
/**
40-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
40+
* Creates a value from the input stream.
41+
* Called from {@link Stores#read(DataInput, QueryContext)}.
4142
* @param in data input
4243
* @param type type
4344
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/BytSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ private BytSeq(final byte[] values) {
3131
}
3232

3333
/**
34-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
34+
* Creates a value from the input stream.
35+
* Called from {@link Stores#read(DataInput, QueryContext)}.
3536
* @param in data input
3637
* @param type type
3738
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/DblSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ private DblSeq(final double[] values) {
3232
}
3333

3434
/**
35-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
35+
* Creates a value from the input stream.
36+
* Called from {@link Stores#read(DataInput, QueryContext)}.
3637
* @param in data input
3738
* @param type type
3839
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/DecSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ private DecSeq(final BigDecimal[] values) {
3434
}
3535

3636
/**
37-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
37+
* Creates a value from the input stream.
38+
* Called from {@link Stores#read(DataInput, QueryContext)}.
3839
* @param in data input
3940
* @param type type
4041
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/FltSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ private FltSeq(final float[] values) {
3232
}
3333

3434
/**
35-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
35+
* Creates a value from the input stream.
36+
* Called from {@link Stores#read(DataInput, QueryContext)}.
3637
* @param in data input
3738
* @param type type
3839
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/IntSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ private IntSeq(final int[] values, final Type type) {
3737
}
3838

3939
/**
40-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
40+
* Creates a value from the input stream.
41+
* Called from {@link Stores#read(DataInput, QueryContext)}.
4142
* @param in data input
4243
* @param type type
4344
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/RangeSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public static Value get(final long start, final long size, final boolean ascendi
5555
}
5656

5757
/**
58-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
58+
* Creates a value from the input stream.
59+
* Called from {@link Stores#read(DataInput, QueryContext)}.
5960
* @param in data input
6061
* @param type type
6162
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/Seq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ private TokenBuilder build(final boolean error) {
281281
// STATIC METHODS ===============================================================================
282282

283283
/**
284-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
284+
* Creates a value from the input stream.
285+
* Called from {@link Stores#read(DataInput, QueryContext)}.
285286
* @param in data input
286287
* @param type type
287288
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/ShrSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ private ShrSeq(final short[] values) {
3131
}
3232

3333
/**
34-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
34+
* Creates a value from the input stream.
35+
* Called from {@link Stores#read(DataInput, QueryContext)}.
3536
* @param in data input
3637
* @param type type
3738
* @param qc query context

basex-core/src/main/java/org/basex/query/value/seq/SingletonSeq.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ private SingletonSeq(final long size, final Value value) {
3838
}
3939

4040
/**
41-
* Creates a value from the input stream. Called from {@link Stores#read(DataInput, QueryContext)}.
41+
* Creates a value from the input stream.
42+
* Called from {@link Stores#read(DataInput, QueryContext)}.
4243
* @param in data input
4344
* @param type type
4445
* @param qc query context

0 commit comments

Comments
 (0)