added fleet api classes
[fleet.git] / src / edu / berkeley / fleet / api / Ship.java
1 package edu.berkeley.fleet.api;
2 import java.io.*;
3 import java.util.*;
4
5 public abstract class Ship {
6
7     /** returns the type of the ship ("Fetch", "ALU", etc) */
8     public abstract String getType();
9     
10     /** return all benkoboxes which feed this ship; order is NOT significant */
11     public abstract Iterable<BenkoBox> getBenkoBoxes();
12
13 }