Changeset 1067
- Timestamp:
- 02/14/13 15:15:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementFactory.java
r990 r1067 87 87 int i = 0; 88 88 String className = null; 89 while (className == null && i < typeHierarchy.length){ 90 className = mappings.getProperty(typeHierarchy[i]); 91 i++; 92 } 89 90 while ((className == null) && (i < typeHierarchy.length)) { 91 className = mappings.getProperty(typeHierarchy[i]); 92 i++; 93 } 94 93 95 if (className != null) { 94 96 try {
Note: See TracChangeset
for help on using the changeset viewer.