diff -r 89e3e6e28b69 -r 737ab27e37b3 src/java/de/uapcore/lightpit/MenuEntry.java --- a/src/java/de/uapcore/lightpit/MenuEntry.java Sat Dec 16 20:19:28 2017 +0100 +++ b/src/java/de/uapcore/lightpit/MenuEntry.java Sun Dec 17 01:45:28 2017 +0100 @@ -37,7 +37,14 @@ */ public class MenuEntry { + /** + * Resource key for the menu label. + */ private ResourceKey resourceKey; + + /** + * Path name of the module, linked by this menu entry. + */ private String pathName; public MenuEntry() { @@ -48,38 +55,18 @@ this.pathName = pathName; } - /** - * Sets the resource key, which is used to look up the menu label. - * - * @param resourceKey the key for the resource bundle - */ public void setResourceKey(ResourceKey resourceKey) { this.resourceKey = resourceKey; } - /** - * Retrieves the resource key. - * - * @return the key for the resource bundle - */ public ResourceKey getResourceKey() { return resourceKey; } - /** - * Sets the path name of the web page accessed via this menu entry. - * - * @param pathName path name relative to the context path - */ public void setPathName(String pathName) { this.pathName = pathName; } - /** - * Retrieves the path name of the web page accessed via this menu entry. - * - * @return path name relative to the context path - */ public String getPathName() { return pathName; }