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

Last change on this file since 597 was 597, checked in by pharms, 12 years ago
  • just a parameter rename
File size: 990 bytes
Line 
1// Module    : $RCSfile: IGUIElementParameters.java,v $
2// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 17.08.2012 $
3// Project   : quest-core-events
4// Creation  : 2012 by pharms
5// Copyright : Patrick Harms, 2012
6package de.ugoe.cs.quest.eventcore.guimodel;
7
8/**
9 * <p>
10 * TODO comment
11 * </p>
12 *
13 * @version $Revision: $ $Date: 17.08.2012$
14 * @author 2012, last modified by $Author: pharms$
15 */
16public interface IGUIElementSpec {
17
18    /**
19     * <p>
20     * TODO: comment
21     * </p>
22     *
23     * @return
24     */
25    public String getType();
26   
27    /**
28     * <p>
29     * TODO: comment
30     * </p>
31     *
32     * @param other
33     * @return
34     */
35    public boolean getSimilarity(IGUIElementSpec other);
36
37    /**
38     * <p>
39     * TODO: comment
40     * </p>
41     *
42     * @param other
43     * @return
44     */
45    public boolean equals(IGUIElementSpec other);
46   
47    /**
48     * <p>
49     * TODO: comment
50     * </p>
51     *
52     * @return
53     */
54    public int hashCode();
55}
Note: See TracBrowser for help on using the repository browser.