I want to create a function which takes two arguments
- A String value (name)
- An array of String objects
The function creates LWUIT Combobox with these two parameters and returns a ComboBox varialble...
I have written following code ...
public void createComboxBox(String recStoreName,String [] values){
comboBox = new ComboBox(recStoreName, values);
surveyForm.addComponent(comboBox);
}