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
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
17public class MockGUIElement implements IGUIElement {
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    }
34
35    @Override
36    public String getPlatform() {
37        // TODO Auto-generated method stub
38        return null;
39    }
40
41    @Override
42    public String getStringIdentifier() {
43        // TODO Auto-generated method stub
44        return null;
45    }
46
47    @Override
48    public IGUIElementSpec getSpecification() {
49        return spec;
50    }
51
52    @Override
53    public IGUIElement getParent() {
54        return parent;
55    }
56
57    @Override
58    public void updateSpecification(IGUIElementSpec furtherSpec) {
59        // TODO Auto-generated method stub
60
61    }
62
63    @Override
64    public void addEqualGUIElement(IGUIElement equalElement) {
65        // TODO Auto-generated method stub
66
67    }
68
69    @Override
70    public boolean isUsed() {
71        // TODO Auto-generated method stub
72        return false;
73    }
74
75    @Override
76    public void markUsed() {
77            // TODO Auto-generated method stub
78    }
79
80}
Note: See TracBrowser for help on using the repository browser.