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

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
File size: 764 bytes
Line 
1package de.ugoe.cs.quest.eventcore.guimodel;
2
3/**
4 * <p>
5 * TODO comment
6 * </p>
7 *
8 * @version $Revision: $ $Date: 17.08.2012$
9 * @author 2012, last modified by $Author: pharms$
10 */
11public interface IGUIElementSpec {
12
13    /**
14     * <p>
15     * TODO: comment
16     * </p>
17     *
18     * @return
19     */
20    public String getType();
21   
22    /**
23     * <p>
24     * TODO: comment
25     * </p>
26     *
27     * @param other
28     * @return
29     */
30    public boolean getSimilarity(IGUIElementSpec other);
31
32    /**
33     * <p>
34     * TODO: comment
35     * </p>
36     *
37     * @param other
38     * @return
39     */
40    public boolean equals(IGUIElementSpec other);
41   
42    /**
43     * <p>
44     * TODO: comment
45     * </p>
46     *
47     * @return
48     */
49    public int hashCode();
50}
Note: See TracBrowser for help on using the repository browser.