Type of default value not checked
In the following property declaration, the type of the default value does not comply with the type of the property.
weight :: Float (default=0)This leads to an error in the generated Java code.
Submitted by Eelco Visser on 26 February 2011 at 15:50
setWeight(java.lang.Float) in webdsl.generated.domain.ClassificationScheme cannot be applied to (int)
this.setWeight(0);
Log in to post comments