- Timestamp:
- 11/07/12 14:33:34 (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/IGUIElementSpec.java
r927 r966 22 22 * </p> 23 23 * 24 * @version 1. 025 * @author Patrick Harms 24 * @version 1.1 25 * @author Patrick Harms, Steffen Herbold 26 26 */ 27 27 public interface IGUIElementSpec extends Serializable { … … 29 29 /** 30 30 * <p> 31 * Returns a string represen ation of the GUI element type that this specification represents.31 * Returns a string representation of the GUI element type that this specification represents. 32 32 * </p> 33 33 * … … 35 35 */ 36 36 public String getType(); 37 38 /** 39 * <p> 40 * Returns a string array with the names of the classes in the hierarchy of the GUI element that 41 * this specification represents. The first element is the GUI element's class, the second its 42 * parent, the third its grand-parent, etc. 43 * </p> 44 * <p> 45 * In case the class hierarchy is unknown or the GUI elements are not based on 46 * object-orientation, this method should <code>return new String[]{getType()};</code>. 47 * </p> 48 * 49 * @return 50 */ 51 public String[] getClassHierarchy(); 37 52 38 53 /** -
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/guimodel/HTMLGUIElementSpec.java
r961 r966 70 70 } 71 71 72 @Override 73 public String[] getClassHierarchy() { 74 // TODO Auto-generated method stub 75 System.out.println("TODO: implement IGUIElementSpec.getClassHierarchy "); 76 return null; 77 } 78 72 79 } -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCGUIElementSpec.java
r927 r966 403 403 } 404 404 405 @Override 406 public String[] getClassHierarchy() { 407 // TODO Auto-generated method stub 408 System.out.println("TODO: implement IGUIElementSpec.getClassHierarchy "); 409 return null; 410 } 411 405 412 } -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/guimodel/MFCGUIElementSpec.java
r940 r966 414 414 } 415 415 416 @Override 417 public String[] getClassHierarchy() { 418 // TODO Auto-generated method stub 419 System.out.println("TODO: implement IGUIElementSpec.getClassHierarchy "); 420 return null; 421 } 422 416 423 }
Note: See TracChangeset
for help on using the changeset viewer.