placements.put(s, null);
s = "main.menu/edit?after=main.menu/file";
urls.add(s);
paths.put(s, new String[] { "main.menu", "edit" });
placements.put(s, new URLTreeNodePlacement(AFTER, "main.menu/file"));
s = "main.menu/window?end";
urls.add(s);
paths.put(s, new String[] { "main.menu", "window" });
placements.put(s, new URLTreeNodePlacement(END, null));
s = "main.menu/help?last";
urls.add(s);
paths.put(s, new String[] { "main.menu", "help" });
placements.put(s, new URLTreeNodePlacement(LAST, null));
s = "main.menu/help?first";
urls.add(s);
paths.put(s, new String[] { "main.menu", "help" });
placements.put(s, new URLTreeNodePlacement(FIRST, null));
s = "main.menu/help?start";
urls.add(s);
paths.put(s, new String[] { "main.menu", "help" });
placements.put(s, new URLTreeNodePlacement(START, null));
s = "main.menu/window?before=main.menu/help";
urls.add(s);
paths.put(s, new String[] { "main.menu", "window" });
placements.put(s, new URLTreeNodePlacement(BEFORE, "main.menu/help"));
}