package de.ugoe.cs.autoquest.plugin.mfc.guimodel; import de.ugoe.cs.autoquest.eventcore.guimodel.IListBox; /** *

* Class that represents list boxes in MFC GUIs. *

* * @version 1.0 * @author Patrick Harms */ public class MFCListBox extends MFCGUIElement implements IListBox { /** *

* Id for object serialization. *

*/ private static final long serialVersionUID = 1L; /** *

* Constructor. Creates a new MFCListBox. *

* * @param specification * specification of created GUI element * @param parent * parent of the created GUI element; null means that the element is a top-level * window */ public MFCListBox(MFCGUIElementSpec specification, MFCGUIElement parent) { super(specification, parent); } }