I am working on an eclipse RCP project. As I was going through the walkthroughs I came across preference page and started working around it.
Now I need to change the values of the ComboFieldEditor
dynamically. As in when I make a selection on a TextFieldEditor
the values of the ComboFieldEditor
must change. I tried searching for an answer and even tried one of the solutions I found on Stack Overflow, but I always ended up with NullPointerException
. Can someone help me in this regard?
Technically I want to change the values in the ComboFieldEditor
dynamically. As in, when a listener is triggered I want to put new values in my combobox. I tried this solution but I kept getting a NullPointerException
.