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

Last change on this file since 2231 was 1870, checked in by funger, 9 years ago
  • added android elements to guimodel
  • update guimapping
  • disabled showSteps in AndroidLogParser?
  • 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.ICanvas;
17
18/**
19 * <p>
20 * Class that represents calendars in Android GUIs.
21 * </p>
22 *
23 * @version 1.0
24 * @author Florian Unger
25 */
26public class ANDROIDCalendar extends ANDROIDGUIElement implements ICanvas{
27    /**
28     * <p>
29     * Id for object serialization.
30     * </p>
31     */
32    private static final long serialVersionUID = 1L;
33
34    /**
35     * <p>
36     * Constructor. Creates a new ANDROIDCalendar.
37     * </p>
38     *
39     * @param specification
40     *            specification of created GUI element
41     * @param parent
42     *            parent of the created GUI element; null means that the element is a top-level
43     *            window
44     */
45    public ANDROIDCalendar(ANDROIDGUIElementSpec specification, ANDROIDGUIElement parent) {
46        super(specification, parent);
47    }
48
49    /*
50     * (non-Javadoc)
51     *
52     * @see de.ugoe.cs.autoquest.plugin.android.guimodel.ANDROIDGUIElement#getElementDescriptor()
53     */
54    @Override
55    protected String getElementDescriptor() {
56        return "Calendar";
57    }
58}
Note: See TracBrowser for help on using the repository browser.