Changeset 934 for trunk/autoquest-jfcmonitor/src/main
- Timestamp:
- 10/18/12 16:32:30 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-jfcmonitor/src/main/java/de/ugoe/cs/autoquest/jfcmonitor/JFCTitleChangeListener.java
r928 r934 86 86 int oldTitleSource = jfcComponent.getTitleSource(); 87 87 Object newTitle = evt.getNewValue(); 88 // We only print the name change message if the new title is as88 // We only print the title change message if the new title is as 89 89 // least as informative as the initial title 90 90 if ((!CHECK_HIERARCHY || oldTitleSource <= titleSource)) { 91 91 StringBuilder builder = new StringBuilder(); 92 builder.append("<component NameChange hash=\"");92 builder.append("<componentTitleChange hash=\""); 93 93 builder.append(Integer.toHexString(component.hashCode())); 94 builder.append("\" new Name=\"" + newTitle);95 builder.append("\" source=\"" + propertyName);94 builder.append("\" newTitle=\"" + newTitle); 95 builder.append("\" titleSource=\"" + titleSource); 96 96 builder.append("\" />" + StringTools.ENDLINE); 97 97 outputWriter.write(builder.toString());
Note: See TracChangeset
for help on using the changeset viewer.