Changeset 1387 for trunk/autoquest-plugin-html-test/src
- Timestamp:
- 02/15/14 15:26:06 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-html-test/src/test/java/de/ugoe/cs/autoquest/plugin/html/commands/CMDcondenseHTMLGUIModelTest.java
r1336 r1387 482 482 } 483 483 else if (childElement instanceof GUIElementGroup) { 484 name.append(((GUIElementGroup) childElement).getStringIdentifier()); 484 String tmp = ((GUIElementGroup) childElement).getStringIdentifier(); 485 tmp = tmp.replaceAll("/", ""); 486 tmp = tmp.replaceAll("\\[", ""); 487 tmp = tmp.replaceAll("\\]", ""); 488 tmp = tmp.replaceAll("\\|", ""); 489 name.append(tmp); 485 490 486 491 /*for (IGUIElement groupedElement : ((GUIElementGroup) childElement).getGroupedElements())
Note: See TracChangeset
for help on using the changeset viewer.