Ignore:
Timestamp:
04/07/14 08:42:08 (10 years ago)
Author:
pharms
Message:
  • added support and initial implementation of a platform specific distance measure between GUI elements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIModelTest.java

    r1386 r1490  
    11091109        } 
    11101110 
     1111        /* (non-Javadoc) 
     1112         * @see de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement#getDistanceTo(IGUIElement) 
     1113         */ 
     1114        @Override 
     1115        public double getDistanceTo(IGUIElement otherElement) { 
     1116            if (this == otherElement) { 
     1117                return 0.0; 
     1118            } 
     1119            else { 
     1120                return 1.0; 
     1121            } 
     1122        } 
     1123 
    11111124    } 
    11121125 
Note: See TracChangeset for help on using the changeset viewer.