source: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/guimodel/MFCButton.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: 591 bytes
Line 
1package de.ugoe.cs.quest.plugin.mfc.guimodel;
2
3import de.ugoe.cs.quest.eventcore.guimodel.IButton;
4
5/**
6 * <p>
7 * TODO comment
8 * </p>
9 *
10 * @version $Revision: $ $Date: 21.08.2012$
11 * @author 2012, last modified by $Author: pharms$
12 */
13public class MFCButton extends MFCGUIElement implements IButton {
14
15    /**  */
16    private static final long serialVersionUID = 1L;
17
18    /**
19     * <p>
20     * TODO: comment
21     * </p>
22     *
23     * @param specification
24     */
25    public MFCButton(MFCGUIElementSpec specification, MFCGUIElement parent) {
26        super(specification, parent);
27    }
28
29}
Note: See TracBrowser for help on using the repository browser.