Changeset 1790 for trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs
- Timestamp:
- 10/20/14 18:28:27 (10 years ago)
- Location:
- trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel
- Files:
-
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDButton.java
r1789 r1790 24 24 * @author Florian Unger 25 25 */ 26 public class A ndroidButton extends AndroidGUIElement implements IButton{26 public class ANDROIDButton extends ANDROIDGUIElement implements IButton{ 27 27 /** 28 28 * <p> … … 43 43 * window 44 44 */ 45 public A ndroidButton(AndroidGUIElementSpec specification,46 A ndroidGUIElement parent) {45 public ANDROIDButton(ANDROIDGUIElementSpec specification, 46 ANDROIDGUIElement parent) { 47 47 super(specification, parent); 48 48 // TODO Auto-generated constructor stub -
trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDFrame.java
r1789 r1790 23 23 * @author Florian Unger 24 24 */ 25 public class A ndroidFrame extends AndroidGUIElement implements IFrame{25 public class ANDROIDFrame extends ANDROIDGUIElement implements IFrame{ 26 26 /** 27 27 * <p> … … 42 42 * window 43 43 */ 44 public A ndroidFrame(AndroidGUIElementSpec specification,45 A ndroidGUIElement parent) {44 public ANDROIDFrame(ANDROIDGUIElementSpec specification, 45 ANDROIDGUIElement parent) { 46 46 super(specification, parent); 47 47 } -
trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDGUIElement.java
r1789 r1790 26 26 * @author Florian Unger 27 27 */ 28 public class A ndroidGUIElement extends AbstractDefaultGUIElement{28 public class ANDROIDGUIElement extends AbstractDefaultGUIElement{ 29 29 30 30 /** … … 40 40 * </p> 41 41 */ 42 private A ndroidGUIElementSpec specification;42 private ANDROIDGUIElementSpec specification; 43 43 44 44 /** … … 53 53 * window 54 54 */ 55 public A ndroidGUIElement(AndroidGUIElementSpec specification, AndroidGUIElement parent) {55 public ANDROIDGUIElement(ANDROIDGUIElementSpec specification, ANDROIDGUIElement parent) { 56 56 super(specification, parent); 57 57 this.specification = specification; -
trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDGUIElementSpec.java
r1789 r1790 19 19 * <p> 20 20 * Implements the specification of {@link IGUIElement} for 21 * {@link A ndroidGUIElement}s.21 * {@link ANDROIDGUIElement}s. 22 22 * </p> 23 23 * … … 25 25 * @author Florian Unger 26 26 */ 27 public class A ndroidGUIElementSpec implements IGUIElementSpec {27 public class ANDROIDGUIElementSpec implements IGUIElementSpec { 28 28 29 29 // TODO Why is serialVersionUID = 1L initialized by 1L? … … 102 102 } 103 103 104 if (!(other instanceof A ndroidGUIElementSpec)) {104 if (!(other instanceof ANDROIDGUIElementSpec)) { 105 105 return false; 106 106 }
Note: See TracChangeset
for help on using the changeset viewer.