in cayenne-java-modules/src/main/java/org/apache/cayenne/example/persistent/auto/_Painting.java [65:80]
public void writePropertyDirectly(String propName, Object val) {
if(propName == null) {
throw new IllegalArgumentException();
}
switch (propName) {
case "paintingTitle":
this.paintingTitle = (String)val;
break;
case "toArtist":
this.toArtist = val;
break;
default:
super.writePropertyDirectly(propName, val);
}
}