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/actions/NavigationActions.java

    r70 r80  
    2121                _LastItemUsed = i;
    2222                if (i.getParent() != null) {
    23                         _Parent = i.getParent().getFrameName();
     23                        _Parent = i.getParent().getName();
    2424                }
    2525        }
     
    196196
    197197                // ByMike: If the 'Next' child is being sought for the 1st time...
    198                 String sourceName = source.getFrameName().toLowerCase();
     198                String sourceName = source.getName().toLowerCase();
    199199
    200200                // ByMike: Find the first occurence of a ParentItem linked to the source
     
    212212                                        && !items.get(i).isAnnotation()
    213213                                        && !items.get(i).getAbsoluteLink().equalsIgnoreCase(
    214                                                         source.getFrameName())) {
     214                                                        source.getName())) {
    215215                                _LastItemUsed = items.get(i);
    216216                                FrameUtils.DisplayFrame(_LastItemUsed.getAbsoluteLink(), false);
Note: See TracChangeset for help on using the changeset viewer.