Skip to main content

How to prevent menu commands to be cyclic?

No replies
stern23
Offline
Joined: 2010-10-29
Points: 0

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