|
Somewhere in your code you need:
helloTextBox = new TextBox(String title, String contents, int size, int type);
In your initialise() method you are:
getDisplay().setCurrent(get_helloForm());
I think that a null is being returned from get_helloForm() so a nullPointerException will be thrown when you try to setDisplay() in your initialize() method.
|