source: trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDFrame.java @ 1790

Last change on this file since 1790 was 1790, checked in by funger, 10 years ago

renamed

  • Property svn:mime-type set to text/plain
File size: 1.8 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.
14package de.ugoe.cs.autoquest.plugin.android.guimodel;
15
16import de.ugoe.cs.autoquest.eventcore.guimodel.IFrame;
17/**
18 * <p>
19 * Class that represents frames in Android GUIs.
20 * </p>
21 *
22 * @version 1.0
23 * @author Florian Unger
24 */
25public class ANDROIDFrame extends ANDROIDGUIElement implements IFrame{
26        /**
27     * <p>
28     * Id for object serialization.
29     * </p>
30     */
31    private static final long serialVersionUID = 1L;
32       
33    /**
34     * <p>
35     * Constructor. Creates a new AndroidFrame.
36     * </p>
37     *
38     * @param specification
39     *            specification of created GUI element
40     * @param parent
41     *            parent of the created GUI element; null means that the element is a top-level
42     *            window
43     */
44        public ANDROIDFrame(ANDROIDGUIElementSpec specification,
45                        ANDROIDGUIElement parent) {
46                super(specification, parent);
47        }
48
49        /*
50     * (non-Javadoc)
51     *
52     * @see de.ugoe.cs.autoquest.plugin.jfc.guimodel.JFCGUIElement#getElementDescriptor()
53     */
54    @Override
55    protected String getElementDescriptor() {
56        return "Frame";
57    }
58}
Note: See TracBrowser for help on using the repository browser.