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

Last change on this file since 619 was 619, checked in by pharms, 12 years ago
  • adapted implementation to now generate a full GUI model as well as concrete GUI interaction events
  • Property svn:executable set to *
File size: 807 bytes
Line 
1// Module    : $RCSfile: WindowFromReplay.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 27.11.2011 18:26:10 $
3// Project   : TaskTreePerformanceTest
4// Creation  : 2011 by Patrick
5// Copyright : Patrick Harms, 2011
6
7package de.ugoe.cs.quest.plugin.mfc.guimodel;
8
9import de.ugoe.cs.quest.eventcore.guimodel.IFrame;
10
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: $
15 * @author 2011, last modified by $Author: $
16 */
17public class MFCWindow extends MFCGUIElement implements IFrame {
18
19    /**  */
20    private static final long serialVersionUID = 1L;
21
22    /**
23     * @param name
24     * @param id
25     * @param isModal
26     */
27    public MFCWindow(MFCGUIElementSpec specification, MFCGUIElement parent) {
28        super(specification, parent);
29    }
30
31}
Note: See TracBrowser for help on using the repository browser.