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
If there is an override of a getter for a persistent property this can result in dnCopyField/dnReplaceField calling dnSetXXX but for the current class and that method is not present for that class, just for the superclass. In the case of only overriding the setter then we will get methods dnCopyField/dnProvideField with the incorrect signatures
We should check for the method in the current class, and either throw an exception informing them to override both, or search for the superclass that has the method.
Workaround : override both setter and getter
The text was updated successfully, but these errors were encountered:
If there is an override of a getter for a persistent property this can result in dnCopyField/dnReplaceField calling dnSetXXX but for the current class and that method is not present for that class, just for the superclass. In the case of only overriding the setter then we will get methods dnCopyField/dnProvideField with the incorrect signatures
We should check for the method in the current class, and either throw an exception informing them to override both, or search for the superclass that has the method.
Workaround : override both setter and getter
The text was updated successfully, but these errors were encountered: