source: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCMenuBar.java @ 655

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
File size: 718 bytes
Line 
1package de.ugoe.cs.quest.plugin.jfc.guimodel;
2
3import de.ugoe.cs.quest.eventcore.guimodel.IMenuBar;
4
5/**
6 * TODO comment
7 *
8 * @version $Revision: $ $Date: 13.05.2012$
9 * @author 2012, last modified by $Author: patrick$
10 */
11public class JFCMenuBar extends JFCMenu implements IMenuBar {
12
13    /**  */
14    private static final long serialVersionUID = 1L;
15
16    /**
17     * TODO: comment
18     *
19     * @param name
20     * @param type
21     * @param icon
22     * @param index
23     * @param hashCode
24     */
25    public JFCMenuBar(JFCGUIElementSpec specification, JFCGUIElement parent) {
26        super(specification, parent);
27    }
28
29    @Override
30    protected String getElementDescriptor() {
31        return "MenuBar";
32    }
33
34}
Note: See TracBrowser for help on using the repository browser.