Changeset 141 for trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/data/WindowsMessage.java
- Timestamp:
- 08/01/11 13:54:30 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/data/WindowsMessage.java
r90 r141 19 19 private String xmlWindowDescription = ""; 20 20 private String parentNames = null; 21 private String parentClass = null; 21 22 22 23 private long LPARAM = 0; … … 115 116 xmlWindowDescription = node.xmlRepresentation(); 116 117 parentNames = node.getParentNames(); 118 WindowTreeNode parent = node.getParent(); 119 if( parent==null ) { 120 parentClass = ""; 121 } else { 122 parentClass = parent.getClassName(); 123 } 117 124 } 118 125 } … … 168 175 public String getParentNames() { 169 176 return parentNames; 177 } 178 179 public String getParentClass() { 180 return parentClass; 170 181 } 171 182
Note: See TracChangeset
for help on using the changeset viewer.