comboitems and strDescription should be instance variable instead of static.

This commit is contained in:
Heng Sin Low 2009-03-26 06:31:24 +00:00
parent 10affb0a75
commit 3aa9d77dfe
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +36,10 @@ public class AutoComplete extends Combobox
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** comboItems All menu labels */ /** comboItems All menu labels */
private static String[] comboItems; private String[] comboItems;
/** strDescription Description of menu items */ /** strDescription Description of menu items */
private static String[] strDescription; private String[] strDescription;
/** /**
* Set menu labels * Set menu labels