ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/agents/Station.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

# Content
1 import java.util.*;
2
3 abstract class Station {
4 public abstract ArrayList getAllAgents();
5 public abstract String getName();
6 }