ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/agents/Agent.java
Revision: 1.1
Committed: Mon Apr 23 19:45:18 2001 UTC (23 years ago) by ajm
Branch: MAIN
Log Message:
Sketchy ideas for starting the "agents" project.

File Contents

# User Rev Content
1 ajm 1.1 abstract class Agent implements Runnable {
2     public abstract void onArrival(Station station);
3     public abstract String getName();
4     public abstract long getTransmissionCount();
5     public abstract void greet(Agent agent);
6     }