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

Last change on this file since 595 was 595, checked in by pharms, 12 years ago
  • adapted to match comment template
  • Property svn:executable set to *
File size: 1.0 KB
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 * <p>
13 * TODO comment
14 * </p>
15 *
16 * @version $Revision: $ $Date: $
17 * @author 2011, last modified by $Author: $
18 */
19public interface IGUIElement extends IEventTarget {
20   
21    /**
22     * <p>
23     * TODO comment
24     * </p>
25     */
26    public IGUIElementSpec getSpecification();
27
28    /**
29     * <p>
30     * TODO comment
31     * </p>
32     * 
33     * @param other
34     * @return
35     */
36    public boolean equals(IGUIElement other);
37
38    /**
39     * <p>
40     * TODO comment
41     * </p>
42     */
43    public int hashCode();
44
45    /**
46     * <p>
47     * TODO comment
48     * </p>
49     */
50    public void updateSpecification(IGUIElementSpec furtherSpec);
51}
Note: See TracBrowser for help on using the repository browser.