1 /* |
1 /* |
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
3 * |
3 * |
4 * Copyright 2018 Mike Becker. All rights reserved. |
4 * Copyright 2018 Mike Becker. All rights reserved. |
5 * |
5 * |
6 * Redistribution and use in source and binary forms, with or without |
6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are met: |
7 * modification, are permitted provided that the following conditions are met: |
8 * |
8 * |
9 * 1. Redistributions of source code must retain the above copyright |
9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. |
10 * notice, this list of conditions and the following disclaimer. |
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
26 * POSSIBILITY OF SUCH DAMAGE. |
26 * POSSIBILITY OF SUCH DAMAGE. |
27 * |
27 * |
28 */ |
28 */ |
29 package de.uapcore.lightpit; |
29 package de.uapcore.lightpit; |
30 |
30 |
31 /** |
31 /** |
32 * Maps a resource key for the menu label to the path name for the underlying |
32 * Maps a resource key for the menu label to the path name for the underlying |
33 * site. |
33 * site. |
34 * |
34 * <p> |
35 * Objects of this class are internally instantiated by the |
35 * Objects of this class are internally instantiated by the |
36 * {@link ModuleManager}. |
36 * {@link ModuleManager}. |
37 */ |
37 */ |
38 public class MenuEntry { |
38 public class MenuEntry { |
39 |
39 |
40 /** |
40 /** |
41 * Resource key for the menu label. |
41 * Resource key for the menu label. |
42 */ |
42 */ |
43 private ResourceKey resourceKey; |
43 private ResourceKey resourceKey; |
44 |
44 |
45 /** |
45 /** |
46 * Path name of the module, linked by this menu entry. |
46 * Path name of the module, linked by this menu entry. |
47 */ |
47 */ |
48 private String pathName; |
48 private String pathName; |
49 |
49 |