How to prevent menu commands to be cyclic?
How to prevent menu commands to be cyclic?
February 3, 2012 - 05:37
Hi,
I used before lwuit 1.5 to overide the below method in Form to do it:
protected com.sun.lwuit.List createCommandList(java.util.Vector commands) {
com.sun.lwuit.List list = super.createCommandList(commands);
list.setFixedSelection(com.sun.lwuit.List.FIXED_NONE);
return list;
}
but now createCommandList is not exict.
is any work arround to make the menu non cyclic ?
Thank you




