File tree Expand file tree Collapse file tree 7 files changed +18
-50
lines changed
src/main/java/com/code_intelligence/jazzer/mutation/annotation Expand file tree Collapse file tree 7 files changed +18
-50
lines changed Original file line number Diff line number Diff line change 2525import java .lang .annotation .Retention ;
2626import java .lang .annotation .Target ;
2727
28- /**
29- * Generates a {@code double} in the specified range.
30- */
28+ /** Generates a {@code double} in the specified range. */
3129@ Target (TYPE_USE )
3230@ Retention (RUNTIME )
3331@ AppliesTo ({double .class , Double .class })
3432@ ValidateMinMax
3533@ PropertyConstraint
3634public @interface DoubleInRange {
37- /**
38- * The minimum value of the range, inclusive.
39- */
35+ /** The minimum value of the range, inclusive. */
4036 double min () default Double .NEGATIVE_INFINITY ;
4137
42- /**
43- * The maximum value of the range, inclusive.
44- */
38+ /** The maximum value of the range, inclusive. */
4539 double max () default Double .POSITIVE_INFINITY ;
4640
47- /**
48- * Whether NaN is allowed to be generated.
49- */
41+ /** Whether NaN is allowed to be generated. */
5042 boolean allowNaN () default true ;
5143
5244 /**
Original file line number Diff line number Diff line change 2525import java .lang .annotation .Retention ;
2626import java .lang .annotation .Target ;
2727
28- /**
29- * Generates a {@code float} in the specified range.
30- */
28+ /** Generates a {@code float} in the specified range. */
3129@ Target (TYPE_USE )
3230@ Retention (RUNTIME )
3331@ AppliesTo ({float .class , Float .class })
3432@ ValidateMinMax
3533@ PropertyConstraint
3634public @interface FloatInRange {
37- /**
38- * The minimum value of the range, inclusive.
39- */
35+ /** The minimum value of the range, inclusive. */
4036 float min () default Float .NEGATIVE_INFINITY ;
4137
42- /**
43- * The maximum value of the range, inclusive.
44- */
38+ /** The maximum value of the range, inclusive. */
4539 float max () default Float .POSITIVE_INFINITY ;
4640
47- /**
48- * Whether NaN is allowed to be generated.
49- */
41+ /** Whether NaN is allowed to be generated. */
5042 boolean allowNaN () default true ;
5143
5244 /**
Original file line number Diff line number Diff line change 4646@ ValidateMinMax
4747@ PropertyConstraint
4848public @interface InRange {
49- /**
50- * The minimum value of the range, inclusive.
51- */
49+ /** The minimum value of the range, inclusive. */
5250 long min () default Long .MIN_VALUE ;
5351
54- /**
55- * The maximum value of the range, inclusive.
56- */
52+ /** The maximum value of the range, inclusive. */
5753 long max () default Long .MAX_VALUE ;
5854
5955 /**
Original file line number Diff line number Diff line change 2626import java .lang .annotation .Target ;
2727
2828/**
29- * Generates a not-{@code null} value. By default the mutation framework can generate {@code null} for objects
30- * (including arrays).
29+ * Generates a not-{@code null} value. By default the mutation framework can generate {@code null}
30+ * for objects (including arrays).
3131 */
3232@ Target ({PARAMETER , TYPE_USE })
3333@ Retention (RUNTIME )
Original file line number Diff line number Diff line change 4848@ ValidateContainerDimensions
4949@ PropertyConstraint
5050public @interface WithLength {
51- /**
52- * The minimum length, inclusive.
53- */
51+ /** The minimum length, inclusive. */
5452 int min () default 0 ;
5553
56- /**
57- * The maximum length, inclusive.
58- */
54+ /** The maximum length, inclusive. */
5955 int max () default 1000 ;
6056
6157 /**
Original file line number Diff line number Diff line change 3939@ ValidateContainerDimensions
4040@ PropertyConstraint
4141public @interface WithSize {
42- /**
43- * The minimum size, inclusive.
44- */
42+ /** The minimum size, inclusive. */
4543 int min () default 0 ;
4644
47- /**
48- * The maximum size, inclusive.
49- */
45+ /** The maximum size, inclusive. */
5046 int max () default 1000 ;
5147
5248 /**
Original file line number Diff line number Diff line change 4444@ ValidateContainerDimensions
4545@ PropertyConstraint
4646public @interface WithUtf8Length {
47- /**
48- * The minimum length of the UTF-8 encoding, inclusive.
49- */
47+ /** The minimum length of the UTF-8 encoding, inclusive. */
5048 int min () default 0 ;
5149
52- /**
53- * The maximum length of the UTF-8 encoding, inclusive.
54- */
50+ /** The maximum length of the UTF-8 encoding, inclusive. */
5551 int max () default 1000 ;
5652
5753 /**
You can’t perform that action at this time.
0 commit comments