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
{{ message }}
This repository was archived by the owner on Sep 21, 2022. It is now read-only.
Currently, the value constructor plugin generates a fully initializing
constructor with all elements and attributes.
Client codes that use these constructors will break when a new optional element
or attribute is added to the schema.
A better solution is to generate a partially initializing constructors with only
elements that have minOccurs greater than 0 and with no default value and
required attributes.
It'd be better to use the default-value-plugin to provide default values.