Ignore:
Timestamp:
06/05/08 10:11:18 (16 years ago)
Author:
ra33
Message:

Added DebugFrame action
Added GetCometStats
Lots of bug fixes

Location:
trunk/src/org/expeditee/agents
Files:
2 edited

Legend:

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

    r80 r86  
    2121
    2222        // The shortest delay between frames
    23         protected static final long TIMER_RESOLUTION = 10;
     23        public static final long TIMER_RESOLUTION = 10;
    2424
    2525        protected Frame _start = null;
  • trunk/src/org/expeditee/agents/DisplayTree.java

    r70 r86  
    8585                                // attempt to read in the delay value
    8686                                _delay = Long.parseLong(ItemUtils.StripTag(((Text) delay)
    87                                                 .getFirstLine(), "@DisplayTreePause:"));
     87                                                .getFirstLine(), "@DisplayTreePause"));
    8888                                message("DisplayTree delay changed to: " + _delay + "ms");
    8989                        } catch (NumberFormatException nfe) {
     
    9999                                // attempt to read in the delay value
    100100                                long pause = Long.parseLong(ItemUtils.StripTag(((Text) delay)
    101                                                 .getFirstLine(), "@DisplayFramePause:"));
     101                                                .getFirstLine(), "@DisplayFramePause"));
    102102                                pause(pause);
    103103                        } catch (NumberFormatException nfe) {
Note: See TracChangeset for help on using the changeset viewer.