source: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/guimodel/MFCTrackBar.java @ 837

Last change on this file since 837 was 837, checked in by sherbold, 12 years ago
  • code documentation and clean-up
File size: 866 bytes
Line 
1
2package de.ugoe.cs.quest.plugin.mfc.guimodel;
3
4import de.ugoe.cs.quest.eventcore.guimodel.ITrackBar;
5
6/**
7 * <p>
8 * Class that represents track bars in MFC GUIs.
9 * </p>
10 *
11 * @version 1.0
12 * @author Patrick Harms
13 */
14public class MFCTrackBar extends MFCGUIElement implements ITrackBar {
15
16    /**
17     * <p>
18     * Id for object serialization.
19     * </p>
20     */
21    private static final long serialVersionUID = 1L;
22
23    /**
24     * <p>
25     * Constructor. Creates a new MFCTrackBar.
26     * </p>
27     *
28     * @param specification
29     *            specification of created GUI element
30     * @param parent
31     *            parent of the created GUI element; null means that the element is a top-level
32     *            window
33     */
34    public MFCTrackBar(MFCGUIElementSpec specification, MFCGUIElement parent) {
35        super(specification, parent);
36    }
37
38}
Note: See TracBrowser for help on using the repository browser.