Ignore:
Timestamp:
04/14/11 13:22:26 (13 years ago)
Author:
sherbold
Message:

+ added functionality to get a tree represenation of the Trie

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java

    r16 r23  
    5252                        } else { 
    5353                                return type.equals(otherEvent.type) 
    54                                         && target==otherEvent.target; 
     54                                        && otherEvent.target==null; 
    5555                        } 
    5656                } else { 
     
    7272                if (targetShort!=null) { 
    7373                        shortId = targetShort+"."+getType(); 
    74                         if (idInfo!="") { 
     74                        if ( !"".equals(idInfo)) { 
    7575                                shortId += "."+idInfo; 
    7676                        } 
     
    8787                } 
    8888                id += getType(); 
    89                 if ( idInfo!="" ) { 
     89                if ( !"".equals(idInfo) ) { 
    9090                        id += "." + idInfo; 
    9191                } 
Note: See TracChangeset for help on using the changeset viewer.