You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Number(title = "Number of children", placeHolder = "Number of children", fieldAddonRight = "@", description = "This is a number", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
383
+
privateIntegernumber;
384
+
385
+
publicIntegergetNumber() {
386
+
returnnumber;
387
+
}
388
+
}
389
+
313
390
classLongNumberFormimplementsSerializable {
314
391
315
392
@Number(title = "Long Number", placeHolder = "Long Number PlaceHolder", description = "This is a long number", noTitle = true, validationMessage = "this is a validation msg for long value", readOnly = true)
@@ -320,6 +397,15 @@ public Long getNumber() {
320
397
}
321
398
}
322
399
400
+
classNumberFormLeftimplementsSerializable {
401
+
402
+
@Number(title = "Number of children", placeHolder = "Number of children", fieldAddonLeft = "@", description = "This is a number", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
403
+
privateIntegernumber;
404
+
405
+
publicIntegergetNumber() {
406
+
returnnumber;
407
+
}
408
+
}
323
409
classDoubleNumberFormimplementsSerializable {
324
410
325
411
@Number(title = "Double Number", placeHolder = "Double Number PlaceHolder", description = "This is a double number", noTitle = true, validationMessage = "this is a validation msg for double value", readOnly = true)
@@ -340,6 +426,26 @@ public String getPassword() {
340
426
}
341
427
}
342
428
429
+
classPasswordForm2implementsSerializable {
430
+
431
+
@Password(title = "Password", placeHolder = "Please set you password", fieldAddonRight = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
432
+
privateStringpassword;
433
+
434
+
publicStringgetPassword() {
435
+
returnpassword;
436
+
}
437
+
}
438
+
439
+
classPasswordForm3implementsSerializable {
440
+
441
+
@Password(title = "Password", placeHolder = "Please set you password", fieldAddonLeft = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
442
+
privateStringpassword;
443
+
444
+
publicStringgetPassword() {
445
+
returnpassword;
446
+
}
447
+
}
448
+
343
449
classTextAreaFormimplementsSerializable {
344
450
345
451
@TextArea(title = "Address", placeHolder = "Fill your address please", description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
0 commit comments