1 /*
2 * $Id: MenuEntry.java 1419 2010-11-01 14:12:17Z hoheisel $
3 *
4 * Copyright (c) 2007
5 * Fraunhofer Institute for Computer Architecture and Software Technology
6 * See http://www.first.fraunhofer.de for more details.
7 */
8
9 package net.kwfgrid.gwes.servlet;
10
11 import org.apache.log4j.Logger;
12
13 /**
14 * @author Andreas Hoheisel
15 * (<a href="http://www.andreas-hoheisel.de">www.andreas-hoheisel.de</a>)
16 * @version $Id: MenuEntry.java 1419 2010-11-01 14:12:17Z hoheisel $
17 */
18 public class MenuEntry {
19
20 public String name;
21 public String url;
22 public boolean active;
23 public String image;
24
25 public MenuEntry(String name, String url, boolean active, String image) {
26 this.name = name;
27 this.url = url;
28 this.active = active;
29 this.image = image;
30 }
31
32 }