Changeset 966 for trunk/autoquest-core-events/src/main
- Timestamp:
- 11/07/12 14:33:34 (12 years ago)
- File:
-
- 1 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 /**
Note: See TracChangeset
for help on using the changeset viewer.