change
Factory.cumulativeBuildValues(this.getIssues()));
to
this.tableBuildValues(this.getIssues())
change
FormNotValidCommand semanticError = new FormNotValidCommand("Client.showErrorDialog");
to
FormNotValidCommand semanticError = new FormNotValidCommand(this.getUid());
change
this.loadTableValues((Collection) formdata.get(FORM_ISSUES), this.getIssues(), Issue.class);
to
this.loadTableValues((Collection) formdata.get(FORM_ISSUES), "Version", "Issues", Issue.class);
this generated XBO-Code is wrong:
try\{ Factory f = \(WebObjectTypeFactory\) session.getSingelton\("WebObjectType"\); loadRelation\("WebObjects", "Type", f, rel\_uid\); \} catch \(ClassNotFoundException e\) \{
throw new SingeltonNotFoundException\(this.getClass\(\), "WebObjectType"\);
\} catch \(ConfigurationException e\) \{
throw new InternalException \("error using reflection.",e\);
\}
- use Class instead of Attributename for factory lookup.
- use classname in SingletonNotFoundException, not "Acker".