Update athen how to correctly write your own view authored by Markus Krug's avatar Markus Krug
...@@ -440,3 +440,7 @@ If you managed to annotate your fields correctly, the correct types are about to ...@@ -440,3 +440,7 @@ If you managed to annotate your fields correctly, the correct types are about to
``` ```
Besides the annotation of the fields, copying the three methods with the Eclipse 4 lifecycle annotations and implementing your layout, your controller now has basicly a bunch of empty methods that resulted from the creation of your UI elements. Your next task is to implement them .
Now you need to assure, that the model and the view are always kept on the same state (they should all be up to date at any given time)
Happy coding!!