source: trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/MockGUIElement.java @ 1113

Last change on this file since 1113 was 1113, checked in by pharms, 11 years ago
  • added license statement
  • Property svn:mime-type set to text/plain
File size: 1.9 KB
RevLine 
[1113]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
[1005]15package de.ugoe.cs.autoquest.eventcore.guimodel;
16
17public class MockGUIElement implements IGUIElement {
[1051]18   
19    /**  */
20    private static final long serialVersionUID = 1L;
21   
22    MockGUIElementSpec spec;
23   
24    IGUIElement parent;
25   
26    public MockGUIElement() {
27        // TODO Auto-generated constructor
28    }
29   
30    public MockGUIElement(MockGUIElementSpec spec, IGUIElement parent){
31        this.spec = spec;
32        this.parent = parent;
33    }
[1005]34
[1051]35    @Override
36    public String getPlatform() {
37        // TODO Auto-generated method stub
38        return null;
39    }
[1005]40
[1051]41    @Override
42    public String getStringIdentifier() {
43        // TODO Auto-generated method stub
44        return null;
45    }
[1005]46
[1051]47    @Override
48    public IGUIElementSpec getSpecification() {
49        return spec;
50    }
[1005]51
[1051]52    @Override
53    public IGUIElement getParent() {
54        return parent;
55    }
[1005]56
[1051]57    @Override
58    public void updateSpecification(IGUIElementSpec furtherSpec) {
59        // TODO Auto-generated method stub
[1005]60
[1051]61    }
[1005]62
[1051]63    @Override
64    public void addEqualGUIElement(IGUIElement equalElement) {
65        // TODO Auto-generated method stub
[1005]66
[1051]67    }
[1005]68
[1051]69    @Override
70    public boolean isUsed() {
71        // TODO Auto-generated method stub
72        return false;
73    }
[1010]74
[1051]75    @Override
76    public void markUsed() {
77            // TODO Auto-generated method stub
78    }
79
[1005]80}
Note: See TracBrowser for help on using the repository browser.