Skip to content

Commit c8fc70e

Browse files
HCK-9232: refactor function that checks if number is out of range (#134)
1 parent 7570ca5 commit c8fc70e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

properties_pane/container_level/containerLevelConfig.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* Copyright © 2016-2017 by IntegrIT S.A. dba Hackolade. All rights reserved.
33
*
44
* The copyright to the computer software herein is the property of IntegrIT S.A.
5-
* The software may be used and/or copied only with the written permission of
6-
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7-
* the agreement/contract under which the software has been supplied.
5+
* The software may be used and/or copied only with the written permission of
6+
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7+
* the agreement/contract under which the software has been supplied.
88

99

1010
In order to define custom properties for any object's properties pane, you may copy/paste from the following,
@@ -61,8 +61,8 @@ making sure that you maintain a proper JSON format.
6161
]
6262
},
6363
// “groupInput” can have the following states - 0 items, 1 item, and many items.
64-
// “blockInput” has only 2 states - 0 items or 1 item.
65-
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
64+
// “blockInput” has only 2 states - 0 items or 1 item.
65+
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
6666
// and forward-engineering in particular.
6767
{
6868
"propertyName": "Block",
@@ -90,7 +90,7 @@ making sure that you maintain a proper JSON format.
9090
"propertyKeyword": "keyList",
9191
"propertyType": "fieldList",
9292
"template": "orderedList"
93-
},
93+
},
9494
{
9595
"propertyName": "List with attribute",
9696
"propertyKeyword": "keyListOrder",
@@ -182,31 +182,31 @@ making sure that you maintain a proper JSON format.
182182
"propertyType": "numeric",
183183
"valueType": "number",
184184
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
185-
"maxValue": 999999999999999
185+
"maxValue": 9223372036854775807
186186
},
187187
{
188188
"propertyName": "Increment",
189189
"propertyKeyword": "increment",
190190
"propertyType": "numeric",
191191
"valueType": "number",
192192
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
193-
"maxValue": 999999999999999
193+
"maxValue": 9223372036854775807
194194
},
195195
{
196196
"propertyName": "Min value",
197197
"propertyKeyword": "minValue",
198198
"propertyType": "numeric",
199199
"valueType": "number",
200200
"propertyTooltip": "Determines the minimum value a sequence can generate. If this clause is not supplied is specified, then defaults will be used. The default for an ascending sequence is 1. The default for a descending sequence is the minimum value of the data type.",
201-
"maxValue": 999999999999999
201+
"maxValue": 9223372036854775807
202202
},
203203
{
204204
"propertyName": "Max value",
205205
"propertyKeyword": "maxValue",
206206
"propertyType": "numeric",
207207
"valueType": "number",
208208
"propertyTooltip": "Determines the maximum value for the sequence. If this clause is not supplied is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1.",
209-
"maxValue": 999999999999999
209+
"maxValue": 9223372036854775807
210210
},
211211
{
212212
"propertyName": "Cache",
@@ -215,7 +215,7 @@ making sure that you maintain a proper JSON format.
215215
"valueType": "number",
216216
"propertyTooltip": "specifies how many sequence numbers are to be preallocated and stored in memory for faster access. The minimum value is 1 (only one value can be generated at a time, i.e., no cache), and this is also the default",
217217
"minValue": 1,
218-
"maxValue": 999999999999999
218+
"maxValue": 9223372036854775807
219219
},
220220
{
221221
"propertyName": "Cycle",

0 commit comments

Comments
 (0)