01: /*--------------------------------------------------------------------------*
02: | Copyright (C) 2006 Christopher Kohlhaas |
03: | |
04: | This program is free software; you can redistribute it and/or modify |
05: | it under the terms of the GNU General Public License as published by the |
06: | Free Software Foundation. A copy of the license has been included with |
07: | these distribution in the COPYING file, if not go to www.fsf.org |
08: | |
09: | As a special exception, you are granted the permissions to link this |
10: | program with every library, which license fulfills the Open Source |
11: | Definition as published by the Open Source Initiative (OSI). |
12: *--------------------------------------------------------------------------*/
13: package org.rapla.gui.toolkit;
14:
15: import javax.swing.JMenuItem;
16:
17: public class RaplaMenuItem extends JMenuItem implements
18: IdentifiableMenuEntry {
19: private static final long serialVersionUID = 1L;
20:
21: String id;
22:
23: public RaplaMenuItem(String id) {
24: super ();
25: this .id = id;
26: }
27:
28: public String getId() {
29: return id;
30: }
31:
32: public static RaplaMenuItem[] EMPTY_ARRAY = new RaplaMenuItem[] {};
33:
34: }
|