Ignore:
Timestamp:
08/01/11 13:54:30 (13 years ago)
Author:
sherbold
Message:

+ added "parentClass" as parameter for winInfoValue nodes for the MFC ruleset

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/data/WindowsMessage.java

    r90 r141  
    1919        private String xmlWindowDescription = ""; 
    2020        private String parentNames = null; 
     21        private String parentClass = null; 
    2122 
    2223        private long LPARAM = 0; 
     
    115116                        xmlWindowDescription = node.xmlRepresentation(); 
    116117                        parentNames = node.getParentNames(); 
     118                        WindowTreeNode parent = node.getParent(); 
     119                        if( parent==null ) { 
     120                                parentClass = ""; 
     121                        } else { 
     122                                parentClass = parent.getClassName(); 
     123                        } 
    117124                } 
    118125        } 
     
    168175        public String getParentNames() { 
    169176                return parentNames; 
     177        } 
     178         
     179        public String getParentClass() { 
     180                return parentClass; 
    170181        } 
    171182 
Note: See TracChangeset for help on using the changeset viewer.