source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/IGUIElement.java @ 576

Last change on this file since 576 was 576, checked in by pharms, 12 years ago
  • adaptations for ensuring, that GUI event targets can be created as singletons during parsing.
  • Property svn:executable set to *
File size: 748 bytes
Line 
1// Module    : $RCSfile: GUIElement.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 06.11.2011 10:26:40 $
3// Project   : TaskTreePerformanceTest
4// Creation  : 2011 by Patrick
5// Copyright : Patrick Harms, 2011
6
7package de.ugoe.cs.quest.eventcore.guimodel;
8
9import de.ugoe.cs.quest.eventcore.IEventTarget;
10
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: $
15 * @author 2011, last modified by $Author: $
16 */
17public interface IGUIElement extends IEventTarget {
18   
19    /**
20     *
21     */
22    public IGUIElementSpec getSpecification();
23
24    /**
25     * @param other
26     * @return
27     */
28    public boolean equals(IGUIElement other);
29
30    /**
31     *
32     */
33    public int hashCode();
34}
Note: See TracBrowser for help on using the repository browser.