You can use List to create a Menu and Menu items in J2ME.

e.g.

List simpleMenu = new List("MyListMenu", Choice.IMPLICIT);
menu.append("File", null);
menu.append("View", null);
...