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

Last change on this file since 1433 was 1433, checked in by pharms, 10 years ago
  • added support to retrieve the GUI model to which a GUI element belongs from the GUI element itself
  • Property svn:executable set to *
File size: 2.8 KB
RevLine 
[927]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.
[831]14
[922]15package de.ugoe.cs.autoquest.eventcore.guimodel;
[545]16
[922]17import de.ugoe.cs.autoquest.eventcore.IEventTarget;
[545]18
19/**
[595]20 * <p>
[831]21 * Common interface for all GUI elements.
[595]22 * </p>
[545]23 *
[831]24 * @version 1.0
25 * @author Patrick Harms
[545]26 */
27public interface IGUIElement extends IEventTarget {
[1051]28   
[545]29    /**
[595]30     * <p>
[831]31     * Returns the specification of the GUI element.
[595]32     * </p>
[831]33     *
34     * @return the specification
[545]35     */
[576]36    public IGUIElementSpec getSpecification();
[545]37
38    /**
[595]39     * <p>
[831]40     * Returns the parent of the GUI element.
[595]41     * </p>
[831]42     *
43     * @return the parent
[603]44     */
45    public IGUIElement getParent();
46
47    /**
48     * <p>
[1433]49     * returns the GUI model to which this GUI element belongs
50     * </p>
51     */
52    public GUIModel getGUIModel();
53   
54    /**
55     * <p>
[1051]56     * returns true, if a usage of this GUI element in a trace was observed
57     * </p>
58     *
59     * @return as described
60     */
61    public boolean isUsed();
62
63    /**
64     * <p>
65     * Marks a GUI element as used.
66     * </p>
67     */
68    public void markUsed();
69
70    /**
71     * <p>
[831]72     * Defines that {@link IGUIElement} implementations have to define equals.
[603]73     * </p>
[831]74     *
75     * @see Object#equals(Object)
[545]76     */
[831]77    @Override
[603]78    public boolean equals(Object other);
[545]79
[576]80    /**
[595]81     * <p>
[831]82     * Defines that {@link IGUIElement} implementations have to define hashCode.
[595]83     * </p>
[831]84     *
85     * @see Object#hashCode()
[576]86     */
[831]87    @Override
[576]88    public int hashCode();
[589]89
[595]90    /**
91     * <p>
[831]92     * Updates the specification of a GUI element with another specification, e.g., to add further
93     * known names of the GUI element.
[595]94     * </p>
[831]95     *
96     * @param furtherSpec
97     *            additional specification
[595]98     */
99    public void updateSpecification(IGUIElementSpec furtherSpec);
[613]100
101    /**
102     * <p>
[831]103     * The {@link IGUIElement} that is passed by this function is equal to the current GUI element
104     * and will hereafter be treated as such.
[613]105     * </p>
[831]106     *
[613]107     * @param guiElement
[831]108     *            GUI element that is equal
[613]109     */
110    public void addEqualGUIElement(IGUIElement equalElement);
[545]111}
Note: See TracBrowser for help on using the repository browser.