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

Last change on this file since 1876 was 1876, checked in by pharms, 9 years ago
  • added support for views in GUIs
  • Property svn:executable set to *
File size: 3.7 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.eventcore.guimodel;
16
17import de.ugoe.cs.autoquest.eventcore.IEventTarget;
18
19/**
20 * <p>
21 * Common interface for all GUI elements.
22 * </p>
23 *
24 * @version 1.0
25 * @author Patrick Harms
26 */
27public interface IGUIElement extends IEventTarget {
28   
29    /**
30     * <p>
31     * Returns the specification of the GUI element.
32     * </p>
33     *
34     * @return the specification
35     */
36    public IGUIElementSpec getSpecification();
37
38    /**
39     * <p>
40     * Returns the parent of the GUI element.
41     * </p>
42     *
43     * @return the parent
44     */
45    public IGUIElement getParent();
46
47    /**
48     * <p>
49     * Returns the view of the GUI to which this GUI element belongs.
50     * </p>
51     *
52     * @return the parent
53     */
54    public IGUIView getView();
55
56    /**
57     * <p>
58     * returns the GUI model to which this GUI element belongs
59     * </p>
60     */
61    public GUIModel getGUIModel();
62   
63    /**
64     * <p>
65     * returns true, if a usage of this GUI element in a trace was observed
66     * </p>
67     *
68     * @return as described
69     */
70    public boolean isUsed();
71
72    /**
73     * <p>
74     * Marks a GUI element as used.
75     * </p>
76     */
77    public void markUsed();
78
79    /**
80     * <p>
81     * Defines that {@link IGUIElement} implementations have to define equals.
82     * </p>
83     *
84     * @see Object#equals(Object)
85     */
86    @Override
87    public boolean equals(Object other);
88
89    /**
90     * <p>
91     * Defines that {@link IGUIElement} implementations have to define hashCode.
92     * </p>
93     *
94     * @see Object#hashCode()
95     */
96    @Override
97    public int hashCode();
98
99    /**
100     * <p>
101     * Updates the specification of a GUI element with another specification, e.g., to add further
102     * known names of the GUI element.
103     * </p>
104     *
105     * @param furtherSpec
106     *            additional specification
107     */
108    public void updateSpecification(IGUIElementSpec furtherSpec);
109
110    /**
111     * <p>
112     * The {@link IGUIElement} that is passed by this function is equal to the current GUI element
113     * and will hereafter be treated as such.
114     * </p>
115     *
116     * @param guiElement
117     *            GUI element that is equal
118     */
119    public void addEqualGUIElement(IGUIElement equalElement);
120
121    /**
122     * <p>
123     * Returns a measure for the distance of this {@link IGUIElement} to the provided one. Distance
124     * means a measure for the distance in display of the rendered GUI. The returned values must be
125     * between 0.0 and 1.0 inclusive. 0.0 means no distance, e.g., if the distance to itself shall be
126     * returned. 1.0 means the highest distance possible. Two GUI elements that are not visible
127     * at the same time independent of the screen resolution (e.g., because they resist in separate
128     * views) must have a distance of at least 0.5. 
129     * </p>
130     *
131     * @param guiElement
132     *            the GUI element to measure the distance for
133     */
134    public double getDistanceTo(IGUIElement otherElement);
135}
Note: See TracBrowser for help on using the repository browser.