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

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
  • Property svn:executable set to *
File size: 562 bytes
Line 
1package de.ugoe.cs.quest.plugin.mfc.guimodel;
2
3import de.ugoe.cs.quest.eventcore.guimodel.IFrame;
4
5/**
6 * TODO comment
7 *
8 * @version $Revision: $ $Date: $
9 * @author 2011, last modified by $Author: $
10 */
11public class MFCWindow extends MFCGUIElement implements IFrame {
12
13    /**  */
14    private static final long serialVersionUID = 1L;
15
16    /**
17     * @param name
18     * @param id
19     * @param isModal
20     */
21    public MFCWindow(MFCGUIElementSpec specification, MFCGUIElement parent) {
22        super(specification, parent);
23    }
24
25}
Note: See TracBrowser for help on using the repository browser.