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

Location:
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows
Files:
2 edited

Legend:

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

    r77 r141  
    564564                                        } 
    565565                                        value = target.substring(0, index); 
     566                                } else if (paramString.equals("parentClass")) { 
     567                                        value = varMessage.getParentClass(); 
    566568                                } 
    567569                        } 
  • 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.