Ignore:
Timestamp:
05/30/08 10:14:43 (16 years ago)
Author:
ra33
Message:

Added some more unit tests
Did a bunch of refactoring
AND added a few new features... @b @v were the most significant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/TreeProcessor.java

    r70 r80  
    3939                        return null;
    4040
    41                 _frames.push(new FrameCounter(toProcess.getFrameName(), -1));
     41                _frames.push(new FrameCounter(toProcess.getName(), -1));
    4242
    4343                // process the entire tree of frames in depth-first order
     
    5656                        if (cur.index < 0) {
    5757                                if (next != null)
    58                                         overwriteMessage("Processing: " + next.getFrameName());
     58                                        overwriteMessage("Processing: " + next.getName());
    5959                                processFrame(next);
    6060                        }
     
    7878                                                if (linked != null) {
    7979                                                        FrameCounter fc = new FrameCounter(linked
    80                                                                         .getFrameName(), -1);
     80                                                                        .getName(), -1);
    8181                                                        if (!_frames.contains(fc)) {
    8282                                                                // remember what frame we are on before
Note: See TracChangeset for help on using the changeset viewer.