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