Changeset 1790


Ignore:
Timestamp:
10/20/14 18:28:27 (10 years ago)
Author:
funger
Message:

renamed

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  
    2424 * @author Florian Unger 
    2525 */ 
    26 public class AndroidButton extends AndroidGUIElement implements IButton{ 
     26public class ANDROIDButton extends ANDROIDGUIElement implements IButton{ 
    2727        /** 
    2828     * <p> 
     
    4343     *            window 
    4444     */ 
    45     public AndroidButton(AndroidGUIElementSpec specification, 
    46                         AndroidGUIElement parent) { 
     45    public ANDROIDButton(ANDROIDGUIElementSpec specification, 
     46                        ANDROIDGUIElement parent) { 
    4747                super(specification, parent); 
    4848                // TODO Auto-generated constructor stub 
  • trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDFrame.java

    r1789 r1790  
    2323 * @author Florian Unger 
    2424 */ 
    25 public class AndroidFrame extends AndroidGUIElement implements IFrame{ 
     25public class ANDROIDFrame extends ANDROIDGUIElement implements IFrame{ 
    2626        /** 
    2727     * <p> 
     
    4242     *            window 
    4343     */ 
    44         public AndroidFrame(AndroidGUIElementSpec specification, 
    45                         AndroidGUIElement parent) { 
     44        public ANDROIDFrame(ANDROIDGUIElementSpec specification, 
     45                        ANDROIDGUIElement parent) { 
    4646                super(specification, parent); 
    4747        } 
  • trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDGUIElement.java

    r1789 r1790  
    2626 * @author Florian Unger 
    2727 */ 
    28 public class AndroidGUIElement extends AbstractDefaultGUIElement{ 
     28public class ANDROIDGUIElement extends AbstractDefaultGUIElement{ 
    2929 
    3030        /** 
     
    4040     * </p> 
    4141     */ 
    42     private AndroidGUIElementSpec specification; 
     42    private ANDROIDGUIElementSpec specification; 
    4343     
    4444    /** 
     
    5353     *            window 
    5454     */ 
    55     public AndroidGUIElement(AndroidGUIElementSpec specification, AndroidGUIElement parent) { 
     55    public ANDROIDGUIElement(ANDROIDGUIElementSpec specification, ANDROIDGUIElement parent) { 
    5656                super(specification, parent); 
    5757                this.specification = specification; 
  • trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/ANDROIDGUIElementSpec.java

    r1789 r1790  
    1919 * <p> 
    2020 * Implements the specification of {@link IGUIElement} for 
    21  * {@link AndroidGUIElement}s. 
     21 * {@link ANDROIDGUIElement}s. 
    2222 * </p> 
    2323 *  
     
    2525 * @author Florian Unger 
    2626 */ 
    27 public class AndroidGUIElementSpec implements IGUIElementSpec { 
     27public class ANDROIDGUIElementSpec implements IGUIElementSpec { 
    2828 
    2929        // TODO Why is serialVersionUID = 1L initialized by 1L? 
     
    102102                } 
    103103 
    104                 if (!(other instanceof AndroidGUIElementSpec)) { 
     104                if (!(other instanceof ANDROIDGUIElementSpec)) { 
    105105                        return false; 
    106106                } 
Note: See TracChangeset for help on using the changeset viewer.