changed return type in loadViewAndGetChildController to support new ui base classes

This commit is contained in:
Manfred Karrer 2014-08-29 20:07:11 +02:00
parent b7c1fa58d7
commit 8089f40601
15 changed files with 34 additions and 20 deletions

View file

@ -23,6 +23,9 @@ public class CodeBehind<T extends PresentationModel> implements Initializable {
this.pm = pm;
}
public CodeBehind() {
}
public T pm() {
return (T) pm;
}