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